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

Unified Diff: base/prefs/pref_member.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_member.h
diff --git a/base/prefs/pref_member.h b/base/prefs/pref_member.h
index 08c60708d6db705caf80ee54df3014cfe60854c0..17f5b447eb4a6f3a1f58985b6e7be0b7dc718c5c 100644
--- a/base/prefs/pref_member.h
+++ b/base/prefs/pref_member.h
@@ -299,21 +299,21 @@ BASE_PREFS_EXPORT void PrefMember<bool>::UpdatePref(const bool& value);
template <>
BASE_PREFS_EXPORT bool PrefMember<bool>::Internal::UpdateValueInternal(
- const Value& value) const;
+ const base::Value& value) const;
template <>
BASE_PREFS_EXPORT void PrefMember<int>::UpdatePref(const int& value);
template <>
BASE_PREFS_EXPORT bool PrefMember<int>::Internal::UpdateValueInternal(
- const Value& value) const;
+ const base::Value& value) const;
template <>
BASE_PREFS_EXPORT void PrefMember<double>::UpdatePref(const double& value);
template <>
BASE_PREFS_EXPORT bool PrefMember<double>::Internal::UpdateValueInternal(
- const Value& value) const;
+ const base::Value& value) const;
template <>
BASE_PREFS_EXPORT void PrefMember<std::string>::UpdatePref(

Powered by Google App Engine
This is Rietveld 408576698