| Index: chrome/service/service_process_prefs.cc
|
| diff --git a/chrome/service/service_process_prefs.cc b/chrome/service/service_process_prefs.cc
|
| index d4038b57ec1be3e4c4afd3aa8d3acb62ff5d9ace..71886cfb3f048b55219a5796259f7b8b2e212a30 100644
|
| --- a/chrome/service/service_process_prefs.cc
|
| +++ b/chrome/service/service_process_prefs.cc
|
| @@ -55,7 +55,7 @@ bool ServiceProcessPrefs::GetBoolean(const std::string& key,
|
| }
|
|
|
| void ServiceProcessPrefs::SetBoolean(const std::string& key, bool value) {
|
| - prefs_->SetValue(key, base::MakeUnique<base::FundamentalValue>(value),
|
| + prefs_->SetValue(key, base::MakeUnique<base::Value>(value),
|
| WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
|
| }
|
|
|
| @@ -70,7 +70,7 @@ int ServiceProcessPrefs::GetInt(const std::string& key,
|
| }
|
|
|
| void ServiceProcessPrefs::SetInt(const std::string& key, int value) {
|
| - prefs_->SetValue(key, base::MakeUnique<base::FundamentalValue>(value),
|
| + prefs_->SetValue(key, base::MakeUnique<base::Value>(value),
|
| WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
|
| }
|
|
|
|
|