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_DEVICE_SETTINGS_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/prefs/pref_value_map.h" |
17 #include "chrome/browser/chromeos/settings/cros_settings_provider.h" | 18 #include "chrome/browser/chromeos/settings/cros_settings_provider.h" |
18 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 19 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
19 #include "chrome/browser/policy/proto/chrome_device_policy.pb.h" | 20 #include "chrome/browser/policy/proto/chrome_device_policy.pb.h" |
20 #include "chrome/browser/prefs/pref_value_map.h" | |
21 #include "chrome/browser/prefs/pref_value_map.h" | |
22 | 21 |
23 namespace base { | 22 namespace base { |
24 class Value; | 23 class Value; |
25 } | 24 } |
26 | 25 |
27 namespace enterprise_management { | 26 namespace enterprise_management { |
28 class ChromeDeviceSettingsProto; | 27 class ChromeDeviceSettingsProto; |
29 } // namespace enterprise_management | 28 } // namespace enterprise_management |
30 | 29 |
31 namespace chromeos { | 30 namespace chromeos { |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 InitializationTestUnowned); | 156 InitializationTestUnowned); |
158 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, | 157 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, |
159 PolicyFailedPermanentlyNotification); | 158 PolicyFailedPermanentlyNotification); |
160 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, PolicyLoadNotification); | 159 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, PolicyLoadNotification); |
161 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsProvider); | 160 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsProvider); |
162 }; | 161 }; |
163 | 162 |
164 } // namespace chromeos | 163 } // namespace chromeos |
165 | 164 |
166 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ | 165 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ |
OLD | NEW |