Index: chrome/service/service_process_prefs.cc |
diff --git a/chrome/service/service_process_prefs.cc b/chrome/service/service_process_prefs.cc |
index e1aca1a1f7abe99d8f503be362b5858fb41cc902..7de70a4b573e39fab97d28f3ebe7d882d2c984a3 100644 |
--- a/chrome/service/service_process_prefs.cc |
+++ b/chrome/service/service_process_prefs.cc |
@@ -76,6 +76,10 @@ const base::ListValue* ServiceProcessPrefs::GetList( |
return static_cast<const ListValue*>(value); |
} |
+void ServiceProcessPrefs::SetValue(const std::string& key, base::Value* value) { |
+ prefs_->SetValue(key, value); |
+} |
+ |
void ServiceProcessPrefs::RemovePref(const std::string& key) { |
prefs_->RemoveValue(key); |
} |