Index: chrome/service/service_process_prefs.cc |
diff --git a/chrome/service/service_process_prefs.cc b/chrome/service/service_process_prefs.cc |
index 8eb29622038a08c679a9de185de8822094016088..8e367294a65d25292bfe676d8059c222fe11d652 100644 |
--- a/chrome/service/service_process_prefs.cc |
+++ b/chrome/service/service_process_prefs.cc |
@@ -31,7 +31,7 @@ void ServiceProcessPrefs::GetString(const std::string& key, |
void ServiceProcessPrefs::SetString(const std::string& key, |
const std::string& value) { |
- prefs_->SetValue(key, Value::CreateStringValue(value)); |
+ prefs_->SetValue(key, base::StringValue::New(value)); |
} |
void ServiceProcessPrefs::GetBoolean(const std::string& key, bool* result) { |
@@ -41,7 +41,7 @@ void ServiceProcessPrefs::GetBoolean(const std::string& key, bool* result) { |
} |
void ServiceProcessPrefs::SetBoolean(const std::string& key, bool value) { |
- prefs_->SetValue(key, Value::CreateBooleanValue(value)); |
+ prefs_->SetValue(key, base::BooleanValue::New(value)); |
} |
void ServiceProcessPrefs::GetDictionary(const std::string& key, |