| Index: android_webview/browser/aw_pref_store.h
|
| diff --git a/android_webview/browser/aw_pref_store.h b/android_webview/browser/aw_pref_store.h
|
| index ba720ad711f6c9c1a68bde339b758952773f43e9..fd0a9fff8e4e68280d36560c59ca063f6235273c 100644
|
| --- a/android_webview/browser/aw_pref_store.h
|
| +++ b/android_webview/browser/aw_pref_store.h
|
| @@ -35,10 +35,10 @@ class AwPrefStore : public PersistentPrefStore {
|
| bool GetMutableValue(const std::string& key, base::Value** result) override;
|
| void ReportValueChanged(const std::string& key, uint32_t flags) 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;
|
|
|