fix build error
This commit is contained in:
parent
723a3eda8b
commit
9536ebc0ad
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ bool Converter<scoped_refptr<ResourceRequestBodyImpl>>::FromV8(
|
|||
if (!ConvertFromV8(isolate, val, list.get()))
|
||||
return false;
|
||||
*out = new content::ResourceRequestBodyImpl();
|
||||
for (int i = 0; i < list->GetSize(); ++i) {
|
||||
for (size_t i = 0; i < list->GetSize(); ++i) {
|
||||
base::DictionaryValue* dict = nullptr;
|
||||
std::string type;
|
||||
if (!list->GetDictionary(i, &dict))
|
||||
|
|
Loading…
Reference in a new issue