| Index: components/prefs/testing_pref_store.cc
|
| diff --git a/components/prefs/testing_pref_store.cc b/components/prefs/testing_pref_store.cc
|
| index 1e775824a6a9ba1b7a3e6b7673f4b7ea24a7eaff..2a728108919ddaf0261411054fbf4bd8937ee788 100644
|
| --- a/components/prefs/testing_pref_store.cc
|
| +++ b/components/prefs/testing_pref_store.cc
|
| @@ -125,12 +125,12 @@ void TestingPrefStore::SetString(const std::string& key,
|
| }
|
|
|
| void TestingPrefStore::SetInteger(const std::string& key, int value) {
|
| - SetValue(key, base::MakeUnique<base::FundamentalValue>(value),
|
| + SetValue(key, base::MakeUnique<base::Value>(value),
|
| DEFAULT_PREF_WRITE_FLAGS);
|
| }
|
|
|
| void TestingPrefStore::SetBoolean(const std::string& key, bool value) {
|
| - SetValue(key, base::MakeUnique<base::FundamentalValue>(value),
|
| + SetValue(key, base::MakeUnique<base::Value>(value),
|
| DEFAULT_PREF_WRITE_FLAGS);
|
| }
|
|
|
|
|