| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_METRICS_CROS_SETTINGS_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_METRICS_CROS_SETTINGS_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_METRICS_CROS_SETTINGS_PROVIDER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_METRICS_CROS_SETTINGS_PROVIDER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 virtual void DoSet(const std::string& path, base::Value* value); | 30 virtual void DoSet(const std::string& path, base::Value* value); |
| 31 virtual bool Get(const std::string& path, base::Value** value) const; | 31 virtual bool Get(const std::string& path, base::Value** value) const; |
| 32 virtual bool HandlesSetting(const std::string& path); | 32 virtual bool HandlesSetting(const std::string& path); |
| 33 | 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(MetricsCrosSettingsProvider); | 34 DISALLOW_COPY_AND_ASSIGN(MetricsCrosSettingsProvider); |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 }; // namespace chromeos | 37 }; // namespace chromeos |
| 38 | 38 |
| 39 #endif // CHROME_BROWSER_CHROMEOS_METRICS_CROS_SETTINGS_PROVIDER_H_ | 39 #endif // CHROME_BROWSER_CHROMEOS_METRICS_CROS_SETTINGS_PROVIDER_H_ |
| OLD | NEW |