diff options
Diffstat (limited to 'chrome/browser/prefs/pref_value_map.h')
-rw-r--r-- | chrome/browser/prefs/pref_value_map.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/prefs/pref_value_map.h b/chrome/browser/prefs/pref_value_map.h index 19aeb05..d4b9f4e 100644 --- a/chrome/browser/prefs/pref_value_map.h +++ b/chrome/browser/prefs/pref_value_map.h @@ -26,7 +26,8 @@ class PrefValueMap { // Gets the value for |key| and stores it in |value|. Ownership remains with // the map. Returns true if a value is present. If not, |value| is not // touched. - bool GetValue(const std::string& key, Value** value) const; + bool GetValue(const std::string& key, const Value** value) const; + bool GetValue(const std::string& key, Value** value); // Sets a new |value| for |key|. Takes ownership of |value|, which must be // non-NULL. Returns true if the value changed. |