| Index: components/prefs/pref_value_map.cc
|
| diff --git a/components/prefs/pref_value_map.cc b/components/prefs/pref_value_map.cc
|
| index c146918e238eff6e027c7dc65cf201d45005ed92..dc44253c13ed7624c5dbd3e0d219e506c2b527e3 100644
|
| --- a/components/prefs/pref_value_map.cc
|
| +++ b/components/prefs/pref_value_map.cc
|
| @@ -85,7 +85,7 @@ bool PrefValueMap::GetBoolean(const std::string& key,
|
| }
|
|
|
| void PrefValueMap::SetBoolean(const std::string& key, bool value) {
|
| - SetValue(key, base::MakeUnique<base::FundamentalValue>(value));
|
| + SetValue(key, base::MakeUnique<base::Value>(value));
|
| }
|
|
|
| bool PrefValueMap::GetString(const std::string& key,
|
| @@ -105,11 +105,11 @@ bool PrefValueMap::GetInteger(const std::string& key, int* value) const {
|
| }
|
|
|
| void PrefValueMap::SetInteger(const std::string& key, const int value) {
|
| - SetValue(key, base::MakeUnique<base::FundamentalValue>(value));
|
| + SetValue(key, base::MakeUnique<base::Value>(value));
|
| }
|
|
|
| void PrefValueMap::SetDouble(const std::string& key, const double value) {
|
| - SetValue(key, base::MakeUnique<base::FundamentalValue>(value));
|
| + SetValue(key, base::MakeUnique<base::Value>(value));
|
| }
|
|
|
| void PrefValueMap::GetDifferingKeys(
|
|
|