Index: components/prefs/overlay_user_pref_store.h |
diff --git a/components/prefs/overlay_user_pref_store.h b/components/prefs/overlay_user_pref_store.h |
index c3382c25d4e0e3af4a5870298c63c686f18f2329..e3ad88e16688865c4237c4d447f2c5f15776d181 100644 |
--- a/components/prefs/overlay_user_pref_store.h |
+++ b/components/prefs/overlay_user_pref_store.h |
@@ -42,10 +42,10 @@ class COMPONENTS_PREFS_EXPORT OverlayUserPrefStore : public PersistentPrefStore, |
// Methods of PersistentPrefStore. |
bool GetMutableValue(const std::string& key, base::Value** result) override; |
void SetValue(const std::string& key, |
- scoped_ptr<base::Value> value, |
+ std::unique_ptr<base::Value> value, |
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; |
void RemoveValue(const std::string& key, uint32_t flags) override; |
bool ReadOnly() const override; |