| 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_POLICY_DEVICE_STATUS_COLLECTOR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <deque> | 10 #include <deque> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "components/prefs/pref_member.h" | 29 #include "components/prefs/pref_member.h" |
| 30 #include "ui/base/idle/idle.h" | 30 #include "ui/base/idle/idle.h" |
| 31 | 31 |
| 32 namespace chromeos { | 32 namespace chromeos { |
| 33 class CrosSettings; | 33 class CrosSettings; |
| 34 namespace system { | 34 namespace system { |
| 35 class StatisticsProvider; | 35 class StatisticsProvider; |
| 36 } | 36 } |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace content { | |
| 40 class NotificationDetails; | |
| 41 class NotificationSource; | |
| 42 } | |
| 43 | |
| 44 class PrefRegistrySimple; | 39 class PrefRegistrySimple; |
| 45 class PrefService; | 40 class PrefService; |
| 46 | 41 |
| 47 namespace policy { | 42 namespace policy { |
| 48 | 43 |
| 49 struct DeviceLocalAccount; | 44 struct DeviceLocalAccount; |
| 50 class GetStatusState; | 45 class GetStatusState; |
| 51 | 46 |
| 52 // Collects and summarizes the status of an enterprised-managed ChromeOS device. | 47 // Collects and summarizes the status of an enterprised-managed ChromeOS device. |
| 53 class DeviceStatusCollector { | 48 class DeviceStatusCollector { |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 base::ThreadChecker thread_checker_; | 285 base::ThreadChecker thread_checker_; |
| 291 | 286 |
| 292 base::WeakPtrFactory<DeviceStatusCollector> weak_factory_; | 287 base::WeakPtrFactory<DeviceStatusCollector> weak_factory_; |
| 293 | 288 |
| 294 DISALLOW_COPY_AND_ASSIGN(DeviceStatusCollector); | 289 DISALLOW_COPY_AND_ASSIGN(DeviceStatusCollector); |
| 295 }; | 290 }; |
| 296 | 291 |
| 297 } // namespace policy | 292 } // namespace policy |
| 298 | 293 |
| 299 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ | 294 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ |
| OLD | NEW |