Index: chrome/browser/chromeos/cros_settings_provider.h |
diff --git a/chrome/browser/chromeos/cros_settings_provider.h b/chrome/browser/chromeos/cros_settings_provider.h |
index e5012c346ca567b9eb761c77961a8e9446058a2a..53157aa1544a7038efbf48e90019204ff27a71af 100644 |
--- a/chrome/browser/chromeos/cros_settings_provider.h |
+++ b/chrome/browser/chromeos/cros_settings_provider.h |
@@ -21,7 +21,7 @@ class CrosSettingsProvider { |
// Sets |in_value| to given |path| in cros settings. |
// Note that this takes ownership of |in_value|. |
Mattias Nissler (ping if slow)
2011/10/07 11:02:57
comment is wrong.
pastarmovj
2011/10/13 11:25:06
Done.
|
- void Set(const std::string& path, base::Value* in_value); |
+ void Set(const std::string& path, const base::Value& in_value); |
// Gets settings value of given |path| to |out_value|. |
virtual const base::Value* Get(const std::string& path) const = 0; |
@@ -36,7 +36,8 @@ class CrosSettingsProvider { |
private: |
// Does the real job for Set(). |
- virtual void DoSet(const std::string& path, base::Value* in_value) = 0; |
+ virtual void DoSet(const std::string& path, |
+ const base::Value& in_value) = 0; |
}; |
} // namespace chromeos |