| Index: chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
|
| diff --git a/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc b/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
|
| index 256af820bd19ff8cdec1a95286236a27c9b1e612..e66d19857e71cc953c9af067fe129bddd7c85478 100644
|
| --- a/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
|
| +++ b/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
|
| @@ -80,17 +80,17 @@ void ScopedCrosSettingsTestHelper::Set(const std::string& path,
|
|
|
| void ScopedCrosSettingsTestHelper::SetBoolean(const std::string& path,
|
| bool in_value) {
|
| - Set(path, base::FundamentalValue(in_value));
|
| + Set(path, base::Value(in_value));
|
| }
|
|
|
| void ScopedCrosSettingsTestHelper::SetInteger(const std::string& path,
|
| int in_value) {
|
| - Set(path, base::FundamentalValue(in_value));
|
| + Set(path, base::Value(in_value));
|
| }
|
|
|
| void ScopedCrosSettingsTestHelper::SetDouble(const std::string& path,
|
| double in_value) {
|
| - Set(path, base::FundamentalValue(in_value));
|
| + Set(path, base::Value(in_value));
|
| }
|
|
|
| void ScopedCrosSettingsTestHelper::SetString(const std::string& path,
|
|
|