| 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 ~StubCrosSettingsProvider() override; | 20 ~StubCrosSettingsProvider() override; |
| 21 | 21 |
| 22 // CrosSettingsProvider implementation. | 22 // CrosSettingsProvider implementation. |
| 23 const base::Value* Get(const std::string& path) const override; | 23 const base::Value* Get(const std::string& path) const override; |
| 24 TrustedStatus PrepareTrustedValues(const base::Closure& callback) override; | 24 TrustedStatus PrepareTrustedValues(const base::Closure& callback) override; |
| 25 bool HandlesSetting(const std::string& path) const override; | 25 bool HandlesSetting(const std::string& path) const override; |
| 26 | 26 |
| 27 // Convenience forms of Set(). These methods will replace any existing |
| 28 // value at that |path|, even if it has a different type. |
| 29 void SetBoolean(const std::string& path, bool in_value); |
| 30 void SetInteger(const std::string& path, int in_value); |
| 31 void SetDouble(const std::string& path, double in_value); |
| 32 void SetString(const std::string& path, const std::string& in_value); |
| 33 |
| 27 private: | 34 private: |
| 28 // CrosSettingsProvider implementation: | 35 // CrosSettingsProvider implementation: |
| 29 void DoSet(const std::string& path, const base::Value& value) override; | 36 void DoSet(const std::string& path, const base::Value& value) override; |
| 30 | 37 |
| 31 // Initializes settings to their defaults. | 38 // Initializes settings to their defaults. |
| 32 void SetDefaults(); | 39 void SetDefaults(); |
| 33 | 40 |
| 34 // In-memory settings storage. | 41 // In-memory settings storage. |
| 35 PrefValueMap values_; | 42 PrefValueMap values_; |
| 36 | 43 |
| 37 DISALLOW_COPY_AND_ASSIGN(StubCrosSettingsProvider); | 44 DISALLOW_COPY_AND_ASSIGN(StubCrosSettingsProvider); |
| 38 }; | 45 }; |
| 39 | 46 |
| 40 } // namespace chromeos | 47 } // namespace chromeos |
| 41 | 48 |
| 42 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ | 49 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_STUB_CROS_SETTINGS_PROVIDER_H_ |
| OLD | NEW |