Make base::DictionaryValue::Set* return pointers
https://codereview.chromium.org/2850773002
This commit is contained in:
parent
75d02f65d9
commit
7ad524fa34
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ base::Value* V8ValueConverter::FromV8Object(
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
result->SetWithoutPathExpansion(std::string(*name_utf8, name_utf8.length()),
|
result->SetWithoutPathExpansion(std::string(*name_utf8, name_utf8.length()),
|
||||||
child.release());
|
std::move(child));
|
||||||
}
|
}
|
||||||
|
|
||||||
return result.release();
|
return result.release();
|
||||||
|
|
Loading…
Reference in a new issue