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

Unified Diff: components/prefs/value_map_pref_store.cc

Issue 2692203007: Add PrefStore::GetValues (Closed)
Patch Set: Add GetValues to FilesystemJsonPrefStore Created 3 years, 10 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 | « components/prefs/value_map_pref_store.h ('k') | components/user_prefs/tracked/segregated_pref_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/prefs/value_map_pref_store.cc
diff --git a/components/prefs/value_map_pref_store.cc b/components/prefs/value_map_pref_store.cc
index 8b828b10d5c628cdc6b2bb9333269e0746554046..c31d7c771cc9358db4879386d37a53427e286363 100644
--- a/components/prefs/value_map_pref_store.cc
+++ b/components/prefs/value_map_pref_store.cc
@@ -17,6 +17,10 @@ bool ValueMapPrefStore::GetValue(const std::string& key,
return prefs_.GetValue(key, value);
}
+std::unique_ptr<base::DictionaryValue> ValueMapPrefStore::GetValues() const {
+ return prefs_.AsDictionaryValue();
+}
+
void ValueMapPrefStore::AddObserver(PrefStore::Observer* observer) {
observers_.AddObserver(observer);
}
« no previous file with comments | « components/prefs/value_map_pref_store.h ('k') | components/user_prefs/tracked/segregated_pref_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698