| Index: base/prefs/value_map_pref_store.h
|
| diff --git a/base/prefs/value_map_pref_store.h b/base/prefs/value_map_pref_store.h
|
| index 9d8fa3ef2272ca00fa06740d6b52499822accfd4..badfef783e1f8e7c6586323ace799c6b8eeaed8b 100644
|
| --- a/base/prefs/value_map_pref_store.h
|
| +++ b/base/prefs/value_map_pref_store.h
|
| @@ -29,13 +29,13 @@ class BASE_PREFS_EXPORT ValueMapPrefStore : public WriteablePrefStore {
|
|
|
| // WriteablePrefStore overrides:
|
| void SetValue(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 GetMutableValue(const std::string& key, base::Value** value) override;
|
| void ReportValueChanged(const std::string& key, uint32 flags) override;
|
| void SetValueSilently(const std::string& key,
|
| - base::Value* value,
|
| + scoped_ptr<base::Value> value,
|
| uint32 flags) override;
|
|
|
| protected:
|
|
|