| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ | 5 #ifndef COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ |
| 6 #define COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ | 6 #define COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 // PrefStore implementation: | 24 // PrefStore implementation: |
| 25 bool GetValue(const std::string& key, | 25 bool GetValue(const std::string& key, |
| 26 const base::Value** result) const override; | 26 const base::Value** result) const override; |
| 27 void AddObserver(PrefStore::Observer* observer) override; | 27 void AddObserver(PrefStore::Observer* observer) override; |
| 28 void RemoveObserver(PrefStore::Observer* observer) override; | 28 void RemoveObserver(PrefStore::Observer* observer) override; |
| 29 bool HasObservers() const override; | 29 bool HasObservers() const override; |
| 30 | 30 |
| 31 // Sets a |value| for |key|. Should only be called if a value has not been | 31 // Sets a |value| for |key|. Should only be called if a value has not been |
| 32 // set yet; otherwise call ReplaceDefaultValue(). | 32 // set yet; otherwise call ReplaceDefaultValue(). |
| 33 void SetDefaultValue(const std::string& key, scoped_ptr<base::Value> value); | 33 void SetDefaultValue(const std::string& key, |
| 34 std::unique_ptr<base::Value> value); |
| 34 | 35 |
| 35 // Replaces the the value for |key| with a new value. Should only be called | 36 // Replaces the the value for |key| with a new value. Should only be called |
| 36 // if a value has alreday been set; otherwise call SetDefaultValue(). | 37 // if a value has alreday been set; otherwise call SetDefaultValue(). |
| 37 void ReplaceDefaultValue(const std::string& key, | 38 void ReplaceDefaultValue(const std::string& key, |
| 38 scoped_ptr<base::Value> value); | 39 std::unique_ptr<base::Value> value); |
| 39 | 40 |
| 40 const_iterator begin() const; | 41 const_iterator begin() const; |
| 41 const_iterator end() const; | 42 const_iterator end() const; |
| 42 | 43 |
| 43 private: | 44 private: |
| 44 ~DefaultPrefStore() override; | 45 ~DefaultPrefStore() override; |
| 45 | 46 |
| 46 PrefValueMap prefs_; | 47 PrefValueMap prefs_; |
| 47 | 48 |
| 48 base::ObserverList<PrefStore::Observer, true> observers_; | 49 base::ObserverList<PrefStore::Observer, true> observers_; |
| 49 | 50 |
| 50 DISALLOW_COPY_AND_ASSIGN(DefaultPrefStore); | 51 DISALLOW_COPY_AND_ASSIGN(DefaultPrefStore); |
| 51 }; | 52 }; |
| 52 | 53 |
| 53 #endif // COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ | 54 #endif // COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ |
| OLD | NEW |