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

Unified Diff: base/prefs/default_pref_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/default_pref_store.h
diff --git a/base/prefs/default_pref_store.h b/base/prefs/default_pref_store.h
index d44e8665541d495a5d67aa80ca476496676f9bbc..97b3960b0048bbe2f8f5cc0fdb2da132f1b6c167 100644
--- a/base/prefs/default_pref_store.h
+++ b/base/prefs/default_pref_store.h
@@ -29,11 +29,12 @@ class BASE_PREFS_EXPORT DefaultPrefStore : public PrefStore {
// Sets a |value| for |key|. Should only be called if a value has not been
// set yet; otherwise call ReplaceDefaultValue().
- void SetDefaultValue(const std::string& key, scoped_ptr<Value> value);
+ void SetDefaultValue(const std::string& key, scoped_ptr<base::Value> value);
// Replaces the the value for |key| with a new value. Should only be called
// if a value has alreday been set; otherwise call SetDefaultValue().
- void ReplaceDefaultValue(const std::string& key, scoped_ptr<Value> value);
+ void ReplaceDefaultValue(const std::string& key,
+ scoped_ptr<base::Value> value);
const_iterator begin() const;
const_iterator end() const;

Powered by Google App Engine
This is Rietveld 408576698