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" | |
18 #include "base/prefs/pref_value_map.h" | |
Mattias Nissler (ping if slow)
2012/10/22 15:03:12
I guess I should have realized that one include is
Jói
2012/10/22 15:31:58
Done.
| |
17 #include "chrome/browser/chromeos/settings/cros_settings_provider.h" | 19 #include "chrome/browser/chromeos/settings/cros_settings_provider.h" |
18 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 20 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
19 #include "chrome/browser/policy/proto/chrome_device_policy.pb.h" | 21 #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 | 22 |
23 namespace base { | 23 namespace base { |
24 class Value; | 24 class Value; |
25 } | 25 } |
26 | 26 |
27 namespace enterprise_management { | 27 namespace enterprise_management { |
28 class ChromeDeviceSettingsProto; | 28 class ChromeDeviceSettingsProto; |
29 } // namespace enterprise_management | 29 } // namespace enterprise_management |
30 | 30 |
31 namespace chromeos { | 31 namespace chromeos { |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
157 InitializationTestUnowned); | 157 InitializationTestUnowned); |
158 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, | 158 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, |
159 PolicyFailedPermanentlyNotification); | 159 PolicyFailedPermanentlyNotification); |
160 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, PolicyLoadNotification); | 160 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, PolicyLoadNotification); |
161 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsProvider); | 161 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsProvider); |
162 }; | 162 }; |
163 | 163 |
164 } // namespace chromeos | 164 } // namespace chromeos |
165 | 165 |
166 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ | 166 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ |
OLD | NEW |