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( |