| 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 CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/prefs/pref_value_map.h" | 10 #include "base/prefs/pref_value_map.h" |
| 11 #include "chromeos/settings/cros_settings_provider.h" | 11 #include "chromeos/settings/cros_settings_provider.h" |
| 12 | 12 |
| 13 namespace chromeos { | 13 namespace chromeos { |
| 14 | 14 |
| 15 // CrosSettingsProvider implementation that stores settings in memory unsigned. | 15 // CrosSettingsProvider implementation that stores settings in memory unsigned. |
| 16 class StubCrosSettingsProvider : public CrosSettingsProvider { | 16 class StubCrosSettingsProvider : public CrosSettingsProvider { |
| 17 public: | 17 public: |
| 18 explicit StubCrosSettingsProvider(const NotifyObserversCallback& notify_cb); | 18 explicit StubCrosSettingsProvider(const NotifyObserversCallback& notify_cb); |
| 19 StubCrosSettingsProvider(); | 19 StubCrosSettingsProvider(); |
| 20 virtual ~StubCrosSettingsProvider(); | 20 ~StubCrosSettingsProvider() override; |
| 21 | 21 |
| 22 // CrosSettingsProvider implementation. | 22 // CrosSettingsProvider implementation. |
| 23 virtual const base::Value* Get(const std::string& path) const override; | 23 const base::Value* Get(const std::string& path) const override; |
| 24 virtual TrustedStatus PrepareTrustedValues( | 24 TrustedStatus PrepareTrustedValues(const base::Closure& callback) override; |
| 25 const base::Closure& callback) override; | 25 bool HandlesSetting(const std::string& path) const override; |
| 26 virtual bool HandlesSetting(const std::string& path) const override; | |
| 27 | 26 |
| 28 private: | 27 private: |
| 29 // CrosSettingsProvider implementation: | 28 // CrosSettingsProvider implementation: |
| 30 virtual void DoSet(const std::string& path, | 29 void DoSet(const std::string& path, const base::Value& value) override; |
| 31 const base::Value& value) override; | |
| 32 | 30 |
| 33 // Initializes settings to their defaults. | 31 // Initializes settings to their defaults. |
| 34 void SetDefaults(); | 32 void SetDefaults(); |
| 35 | 33 |
| 36 // In-memory settings storage. | 34 // In-memory settings storage. |
| 37 PrefValueMap values_; | 35 PrefValueMap values_; |
| 38 | 36 |
| 39 DISALLOW_COPY_AND_ASSIGN(StubCrosSettingsProvider); | 37 DISALLOW_COPY_AND_ASSIGN(StubCrosSettingsProvider); |
| 40 }; | 38 }; |
| 41 | 39 |
| 42 } // namespace chromeos | 40 } // namespace chromeos |
| 43 | 41 |
| 44 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ | 42 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ |
| OLD | NEW |