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

Unified Diff: chrome/common/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/common/persistent_pref_store.h ('k') | chrome/common/web_apps.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/pref_store.h
===================================================================
--- chrome/common/pref_store.h (revision 92173)
+++ chrome/common/pref_store.h (working copy)
@@ -11,7 +11,9 @@
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
+namespace base {
class Value;
+}
// This is an abstract interface for reading and writing from/to a persistent
// preference store, used by PrefService. An implementation using a JSON file
@@ -56,7 +58,7 @@
// |result| is only modified if the return value is READ_OK. Ownership of the
// |result| value remains with the PrefStore.
virtual ReadResult GetValue(const std::string& key,
- const Value** result) const = 0;
+ const base::Value** result) const = 0;
protected:
friend class base::RefCounted<PrefStore>;
« no previous file with comments | « chrome/common/persistent_pref_store.h ('k') | chrome/common/web_apps.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698