| Index: chrome/browser/chromeos/cros_settings.cc
|
| diff --git a/chrome/browser/chromeos/cros_settings.cc b/chrome/browser/chromeos/cros_settings.cc
|
| index 8d71802fa146c1625187e9d0f0d0d673dc2d4a8c..9996fae0244d1b0f755acaf52f2fdc1995e1ae9c 100644
|
| --- a/chrome/browser/chromeos/cros_settings.cc
|
| +++ b/chrome/browser/chromeos/cros_settings.cc
|
| @@ -56,23 +56,23 @@ void CrosSettings::Set(const std::string& path, Value* in_value) {
|
|
|
| void CrosSettings::SetBoolean(const std::string& path, bool in_value) {
|
| DCHECK(CalledOnValidThread());
|
| - Set(path, Value::CreateBooleanValue(in_value));
|
| + Set(path, base::BooleanValue::New(in_value));
|
| }
|
|
|
| void CrosSettings::SetInteger(const std::string& path, int in_value) {
|
| DCHECK(CalledOnValidThread());
|
| - Set(path, Value::CreateIntegerValue(in_value));
|
| + Set(path, base::NumberValue::New(in_value));
|
| }
|
|
|
| void CrosSettings::SetDouble(const std::string& path, double in_value) {
|
| DCHECK(CalledOnValidThread());
|
| - Set(path, Value::CreateDoubleValue(in_value));
|
| + Set(path, base::NumberValue::New(in_value));
|
| }
|
|
|
| void CrosSettings::SetString(const std::string& path,
|
| const std::string& in_value) {
|
| DCHECK(CalledOnValidThread());
|
| - Set(path, Value::CreateStringValue(in_value));
|
| + Set(path, base::StringValue::New(in_value));
|
| }
|
|
|
| bool CrosSettings::AddSettingsProvider(CrosSettingsProvider* provider) {
|
|
|