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

Unified Diff: base/prefs/pref_value_store.h

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/pref_value_store.h
diff --git a/base/prefs/pref_value_store.h b/base/prefs/pref_value_store.h
index 3006b6e6b975f71115f1621dee311484411781fc..4036e40ac87b99d0b44e59456bae556e0824014f 100644
--- a/base/prefs/pref_value_store.h
+++ b/base/prefs/pref_value_store.h
@@ -75,7 +75,7 @@ class BASE_PREFS_EXPORT PrefValueStore {
// Preference::GetValue() instead of calling this method directly.
bool GetValue(const std::string& name,
base::Value::Type type,
- const Value** out_value) const;
+ const base::Value** out_value) const;
// Gets the recommended value for the given preference name that has the
// specified value type. A value stored in the recommended PrefStore that has
@@ -84,7 +84,7 @@ class BASE_PREFS_EXPORT PrefValueStore {
// Preference::GetRecommendedValue() instead of calling this method directly.
bool GetRecommendedValue(const std::string& name,
base::Value::Type type,
- const Value** out_value) const;
+ const base::Value** out_value) const;
// These methods return true if a preference with the given name is in the
// indicated pref store, even if that value is currently being overridden by
@@ -201,13 +201,13 @@ class BASE_PREFS_EXPORT PrefValueStore {
// Get a value from the specified |store|.
bool GetValueFromStore(const char* name,
PrefStoreType store,
- const Value** out_value) const;
+ const base::Value** out_value) const;
// Get a value from the specified |store| if its |type| matches.
bool GetValueFromStoreWithType(const char* name,
base::Value::Type type,
PrefStoreType store,
- const Value** out_value) const;
+ const base::Value** out_value) const;
// Called upon changes in individual pref stores in order to determine whether
// the user-visible pref value has changed. Triggers the change notification

Powered by Google App Engine
This is Rietveld 408576698