| 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 "base/prefs/pref_value_map.h" |
| 18 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.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/chromeos/chrome_device_policy.pb.h" | |
| 20 #include "chromeos/network/network_state_handler_observer.h" | 20 #include "chromeos/network/network_state_handler_observer.h" |
| 21 #include "chromeos/settings/cros_settings_provider.h" | 21 #include "chromeos/settings/cros_settings_provider.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 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 InitializationTestUnowned); | 170 InitializationTestUnowned); |
| 171 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, | 171 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, |
| 172 PolicyFailedPermanentlyNotification); | 172 PolicyFailedPermanentlyNotification); |
| 173 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, PolicyLoadNotification); | 173 FRIEND_TEST_ALL_PREFIXES(DeviceSettingsProviderTest, PolicyLoadNotification); |
| 174 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsProvider); | 174 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsProvider); |
| 175 }; | 175 }; |
| 176 | 176 |
| 177 } // namespace chromeos | 177 } // namespace chromeos |
| 178 | 178 |
| 179 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ | 179 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_PROVIDER_H_ |
| OLD | NEW |