| Index: base/values.cc
|
| diff --git a/base/values.cc b/base/values.cc
|
| index 5bed467320afd7af9d944b3d5772cb55c6f4d503..2f293c9e817434894d3f846ec41e92d665c6ae19 100644
|
| --- a/base/values.cc
|
| +++ b/base/values.cc
|
| @@ -677,11 +677,6 @@ Value* DictionaryValue::SetWithoutPathExpansion(
|
| return ((*dict_)[key.as_string()] = std::move(in_value)).get();
|
| }
|
|
|
| -Value* DictionaryValue::SetWithoutPathExpansion(StringPiece key,
|
| - Value* in_value) {
|
| - return SetWithoutPathExpansion(key, WrapUnique(in_value));
|
| -}
|
| -
|
| Value* DictionaryValue::SetBooleanWithoutPathExpansion(StringPiece path,
|
| bool in_value) {
|
| return SetWithoutPathExpansion(path, MakeUnique<Value>(in_value));
|
|
|