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

Unified Diff: base/prefs/value_map_pref_store.cc

Issue 16797003: Make base use the proper Value namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwarnings fixed Created 7 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.cc
diff --git a/base/prefs/value_map_pref_store.cc b/base/prefs/value_map_pref_store.cc
index 1d58aa369f07a73a6e2abeecbb2059a635fd3e97..b4b5751111146e802919f5fdcd635d2ab9e27634 100644
--- a/base/prefs/value_map_pref_store.cc
+++ b/base/prefs/value_map_pref_store.cc
@@ -12,7 +12,7 @@
ValueMapPrefStore::ValueMapPrefStore() {}
bool ValueMapPrefStore::GetValue(const std::string& key,
- const Value** value) const {
+ const base::Value** value) const {
return prefs_.GetValue(key, value);
}
@@ -30,7 +30,7 @@ size_t ValueMapPrefStore::NumberOfObservers() const {
ValueMapPrefStore::~ValueMapPrefStore() {}
-void ValueMapPrefStore::SetValue(const std::string& key, Value* value) {
+void ValueMapPrefStore::SetValue(const std::string& key, base::Value* value) {
if (prefs_.SetValue(key, value))
FOR_EACH_OBSERVER(Observer, observers_, OnPrefValueChanged(key));
}

Powered by Google App Engine
This is Rietveld 408576698