| Index: components/prefs/value_map_pref_store.h
|
| diff --git a/components/prefs/value_map_pref_store.h b/components/prefs/value_map_pref_store.h
|
| index bddc64196b77845d8b01edbb7b0914f6951f9008..8310a9bad14bc668539f20798bfad8fc3e8a3e9a 100644
|
| --- a/components/prefs/value_map_pref_store.h
|
| +++ b/components/prefs/value_map_pref_store.h
|
| @@ -31,13 +31,13 @@ class COMPONENTS_PREFS_EXPORT ValueMapPrefStore : public WriteablePrefStore {
|
|
|
| // WriteablePrefStore overrides:
|
| void SetValue(const std::string& key,
|
| - scoped_ptr<base::Value> value,
|
| + std::unique_ptr<base::Value> value,
|
| uint32_t flags) override;
|
| void RemoveValue(const std::string& key, uint32_t flags) override;
|
| bool GetMutableValue(const std::string& key, base::Value** value) override;
|
| void ReportValueChanged(const std::string& key, uint32_t flags) override;
|
| void SetValueSilently(const std::string& key,
|
| - scoped_ptr<base::Value> value,
|
| + std::unique_ptr<base::Value> value,
|
| uint32_t flags) override;
|
|
|
| protected:
|
|
|