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

Unified Diff: base/prefs/value_map_pref_store.h

Issue 331433002: Pull GetMutableValue from Perisistent to WritablePrefStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: base/prefs/value_map_pref_store.h
diff --git a/base/prefs/value_map_pref_store.h b/base/prefs/value_map_pref_store.h
index 29d0b382edfb0b6e71463072bf713ea0039bc588..c202725d947bdd8cab1eb46d88f62fa75fabd9d3 100644
--- a/base/prefs/value_map_pref_store.h
+++ b/base/prefs/value_map_pref_store.h
@@ -30,6 +30,9 @@ class BASE_PREFS_EXPORT ValueMapPrefStore : public WriteablePrefStore {
// WriteablePrefStore overrides:
virtual void SetValue(const std::string& key, base::Value* value) OVERRIDE;
virtual void RemoveValue(const std::string& key) OVERRIDE;
+ virtual bool GetMutableValue(const std::string& key,
+ base::Value** value) OVERRIDE;
+ virtual void ReportValueChanged(const std::string& key) OVERRIDE;
protected:
virtual ~ValueMapPrefStore();

Powered by Google App Engine
This is Rietveld 408576698