| Index: base/prefs/json_pref_store.h
|
| diff --git a/base/prefs/json_pref_store.h b/base/prefs/json_pref_store.h
|
| index d6943e09c64b8394385aca6184edbe065790a0a1..0be7702481ed21239e24e95b9aab5940b29cc8ce 100644
|
| --- a/base/prefs/json_pref_store.h
|
| +++ b/base/prefs/json_pref_store.h
|
| @@ -84,10 +84,10 @@ class BASE_PREFS_EXPORT JsonPrefStore
|
| // PersistentPrefStore overrides:
|
| bool GetMutableValue(const std::string& key, base::Value** result) override;
|
| void SetValue(const std::string& key,
|
| - base::Value* value,
|
| + scoped_ptr<base::Value> value,
|
| uint32 flags) override;
|
| void SetValueSilently(const std::string& key,
|
| - base::Value* value,
|
| + scoped_ptr<base::Value> value,
|
| uint32 flags) override;
|
| void RemoveValue(const std::string& key, uint32 flags) override;
|
| bool ReadOnly() const override;
|
|
|