Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3170)

Unified Diff: base/values.cc

Issue 2843813002: Remove SetWithoutPathExpansion (Closed)
Patch Set: Fix CrOS Error Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/values.h ('k') | chrome/browser/apps/drive/drive_app_mapping.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « base/values.h ('k') | chrome/browser/apps/drive/drive_app_mapping.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698