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

Unified Diff: chrome/browser/prefs/pref_member.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/overlay_persistent_pref_store.h ('k') | chrome/browser/prefs/pref_model_associator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prefs/pref_member.h
===================================================================
--- chrome/browser/prefs/pref_member.h (revision 92173)
+++ chrome/browser/prefs/pref_member.h (working copy)
@@ -47,7 +47,7 @@
// Update the value, either by calling |UpdateValueInternal| directly
// or by dispatching to the right thread.
// Takes ownership of |value|.
- virtual void UpdateValue(Value* value, bool is_managed) const;
+ virtual void UpdateValue(base::Value* value, bool is_managed) const;
void MoveToThread(BrowserThread::ID thread_id);
@@ -67,7 +67,7 @@
private:
// This method actually updates the value. It should only be called from
// the thread the PrefMember is on.
- virtual bool UpdateValueInternal(const Value& value) const = 0;
+ virtual bool UpdateValueInternal(const base::Value& value) const = 0;
bool IsOnCorrectThread() const;
@@ -217,7 +217,7 @@
protected:
virtual ~Internal() {}
- virtual bool UpdateValueInternal(const Value& value) const;
+ virtual bool UpdateValueInternal(const base::Value& value) const;
// We cache the value of the pref so we don't have to keep walking the pref
// tree.
« no previous file with comments | « chrome/browser/prefs/overlay_persistent_pref_store.h ('k') | chrome/browser/prefs/pref_model_associator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698