| 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 <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 12 #include "base/values.h" | 13 #include "base/values.h" |
| 13 #include "components/prefs/base_prefs_export.h" | 14 #include "components/prefs/base_prefs_export.h" |
| 14 #include "components/prefs/pref_store.h" | 15 #include "components/prefs/pref_store.h" |
| 15 #include "components/prefs/pref_value_map.h" | 16 #include "components/prefs/pref_value_map.h" |
| 16 | 17 |
| 17 // Used within a PrefRegistry to keep track of default preference values. | 18 // Used within a PrefRegistry to keep track of default preference values. |
| 18 class COMPONENTS_PREFS_EXPORT DefaultPrefStore : public PrefStore { | 19 class COMPONENTS_PREFS_EXPORT DefaultPrefStore : public PrefStore { |
| 19 public: | 20 public: |
| 20 typedef PrefValueMap::const_iterator const_iterator; | 21 typedef PrefValueMap::const_iterator const_iterator; |
| 21 | 22 |
| 22 DefaultPrefStore(); | 23 DefaultPrefStore(); |
| 23 | 24 |
| 24 // PrefStore implementation: | 25 // PrefStore implementation: |
| 25 bool GetValue(const std::string& key, | 26 bool GetValue(const std::string& key, |
| 26 const base::Value** result) const override; | 27 const base::Value** result) const override; |
| 28 std::unique_ptr<base::DictionaryValue> GetValues() const override; |
| 27 void AddObserver(PrefStore::Observer* observer) override; | 29 void AddObserver(PrefStore::Observer* observer) override; |
| 28 void RemoveObserver(PrefStore::Observer* observer) override; | 30 void RemoveObserver(PrefStore::Observer* observer) override; |
| 29 bool HasObservers() const override; | 31 bool HasObservers() const override; |
| 30 | 32 |
| 31 // Sets a |value| for |key|. Should only be called if a value has not been | 33 // Sets a |value| for |key|. Should only be called if a value has not been |
| 32 // set yet; otherwise call ReplaceDefaultValue(). | 34 // set yet; otherwise call ReplaceDefaultValue(). |
| 33 void SetDefaultValue(const std::string& key, | 35 void SetDefaultValue(const std::string& key, |
| 34 std::unique_ptr<base::Value> value); | 36 std::unique_ptr<base::Value> value); |
| 35 | 37 |
| 36 // Replaces the the value for |key| with a new value. Should only be called | 38 // Replaces the the value for |key| with a new value. Should only be called |
| 37 // if a value has alreday been set; otherwise call SetDefaultValue(). | 39 // if a value has alreday been set; otherwise call SetDefaultValue(). |
| 38 void ReplaceDefaultValue(const std::string& key, | 40 void ReplaceDefaultValue(const std::string& key, |
| 39 std::unique_ptr<base::Value> value); | 41 std::unique_ptr<base::Value> value); |
| 40 | 42 |
| 41 const_iterator begin() const; | 43 const_iterator begin() const; |
| 42 const_iterator end() const; | 44 const_iterator end() const; |
| 43 | 45 |
| 44 private: | 46 private: |
| 45 ~DefaultPrefStore() override; | 47 ~DefaultPrefStore() override; |
| 46 | 48 |
| 47 PrefValueMap prefs_; | 49 PrefValueMap prefs_; |
| 48 | 50 |
| 49 base::ObserverList<PrefStore::Observer, true> observers_; | 51 base::ObserverList<PrefStore::Observer, true> observers_; |
| 50 | 52 |
| 51 DISALLOW_COPY_AND_ASSIGN(DefaultPrefStore); | 53 DISALLOW_COPY_AND_ASSIGN(DefaultPrefStore); |
| 52 }; | 54 }; |
| 53 | 55 |
| 54 #endif // COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ | 56 #endif // COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ |
| OLD | NEW |