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

Unified Diff: chrome/browser/ui/webui/local_state/local_state_ui_unittest.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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
Index: chrome/browser/ui/webui/local_state/local_state_ui_unittest.cc
diff --git a/chrome/browser/ui/webui/local_state/local_state_ui_unittest.cc b/chrome/browser/ui/webui/local_state/local_state_ui_unittest.cc
index 2fc8de3a22d52b1eab75ef8d0046372e4cb5ea7f..4d1793407c5173e9ef2cc3fe54078a70cedeb573 100644
--- a/chrome/browser/ui/webui/local_state/local_state_ui_unittest.cc
+++ b/chrome/browser/ui/webui/local_state/local_state_ui_unittest.cc
@@ -19,7 +19,7 @@ TEST(LocalStateUiTest, FilterPrefs) {
base::DictionaryValue prefs;
for (const std::string& key : all_pref_keys) {
- prefs.Set(key, new base::StringValue(key + "_value"));
+ prefs.Set(key, new base::Value(key + "_value"));
}
internal::FilterPrefs(prefixes, &prefs);
« no previous file with comments | « chrome/browser/ui/webui/local_state/local_state_ui.cc ('k') | chrome/browser/ui/webui/media/webrtc_logs_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698