Index: base/values.cc |
diff --git a/base/values.cc b/base/values.cc |
index 1aab924f04432adeb22c566a53cace4f1b8896e8..e484cbd06dad82b5652aa84e7eef66d2abd06860 100644 |
--- a/base/values.cc |
+++ b/base/values.cc |
@@ -666,11 +666,6 @@ void DictionaryValue::SetWithoutPathExpansion(StringPiece key, |
(*dict_)[key.as_string()] = std::move(in_value); |
} |
-void DictionaryValue::SetWithoutPathExpansion(StringPiece key, |
- Value* in_value) { |
- SetWithoutPathExpansion(key, WrapUnique(in_value)); |
-} |
- |
void DictionaryValue::SetBooleanWithoutPathExpansion(StringPiece path, |
bool in_value) { |
SetWithoutPathExpansion(path, base::MakeUnique<base::Value>(in_value)); |