set default values in converter

This commit is contained in:
deepak1556 2016-10-18 13:25:46 +05:30 коммит произвёл Kevin Sawicki
Родитель dbe57c4ad4
Коммит a5fd6507a9
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -263,8 +263,8 @@ bool Converter<scoped_refptr<ResourceRequestBodyImpl>>::FromV8(
(*out)->AppendBytes(bytes->GetBuffer(), bytes->GetSize());
} else if (type == "file") {
std::string file;
int offset, length;
double modification_time;
int offset = 0, length = -1;
double modification_time = 0.0;
dict->GetStringWithoutPathExpansion("filePath", &file);
dict->GetInteger("offset", &offset);
dict->GetInteger("file", &length);
@ -275,8 +275,8 @@ bool Converter<scoped_refptr<ResourceRequestBodyImpl>>::FromV8(
base::Time::FromDoubleT(modification_time));
} else if (type == "fileSystem") {
std::string file_system_url;
int offset, length;
double modification_time;
int offset = 0, length = -1;
double modification_time = 0.0;
dict->GetStringWithoutPathExpansion("fileSystemURL", &file_system_url);
dict->GetInteger("offset", &offset);
dict->GetInteger("file", &length);