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

Unified Diff: chrome/browser/prefs/value_map_pref_store.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | « chrome/browser/prefs/testing_pref_store.h ('k') | chrome/browser/prerender/prerender_contents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prefs/value_map_pref_store.h
===================================================================
--- chrome/browser/prefs/value_map_pref_store.h (revision 92173)
+++ chrome/browser/prefs/value_map_pref_store.h (working copy)
@@ -15,15 +15,15 @@
// storing the preference values.
class ValueMapPrefStore : public PrefStore {
public:
- typedef std::map<std::string, Value*>::iterator iterator;
- typedef std::map<std::string, Value*>::const_iterator const_iterator;
+ typedef std::map<std::string, base::Value*>::iterator iterator;
+ typedef std::map<std::string, base::Value*>::const_iterator const_iterator;
ValueMapPrefStore();
virtual ~ValueMapPrefStore();
// PrefStore overrides:
virtual ReadResult GetValue(const std::string& key,
- const Value** value) const;
+ const base::Value** value) const;
virtual void AddObserver(PrefStore::Observer* observer);
virtual void RemoveObserver(PrefStore::Observer* observer);
@@ -35,7 +35,7 @@
protected:
// Store a |value| for |key| in the store. Also generates an notification if
// the value changed. Assumes ownership of |value|, which must be non-NULL.
- void SetValue(const std::string& key, Value* value);
+ void SetValue(const std::string& key, base::Value* value);
// Remove the value for |key| from the store. Sends a notification if there
// was a value to be removed.
« no previous file with comments | « chrome/browser/prefs/testing_pref_store.h ('k') | chrome/browser/prerender/prerender_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698