| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback_list.h" | 11 #include "base/callback_list.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/task/cancelable_task_tracker.h" | 16 #include "base/task/cancelable_task_tracker.h" |
| 17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 18 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
| 19 #include "chrome/browser/chromeos/settings/cros_settings.h" | 19 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 20 #include "chrome/browser/chromeos/version_loader.h" | |
| 21 #include "chrome/browser/idle.h" | 20 #include "chrome/browser/idle.h" |
| 21 #include "chromeos/system/version_loader.h" |
| 22 #include "components/policy/core/common/cloud/cloud_policy_client.h" | 22 #include "components/policy/core/common/cloud/cloud_policy_client.h" |
| 23 #include "content/public/browser/geolocation_provider.h" | 23 #include "content/public/browser/geolocation_provider.h" |
| 24 #include "content/public/common/geoposition.h" | 24 #include "content/public/common/geoposition.h" |
| 25 | 25 |
| 26 namespace chromeos { | 26 namespace chromeos { |
| 27 class CrosSettings; | 27 class CrosSettings; |
| 28 namespace system { | 28 namespace system { |
| 29 class StatisticsProvider; | 29 class StatisticsProvider; |
| 30 } | 30 } |
| 31 } | 31 } |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 users_subscription_; | 191 users_subscription_; |
| 192 | 192 |
| 193 base::WeakPtrFactory<DeviceStatusCollector> weak_factory_; | 193 base::WeakPtrFactory<DeviceStatusCollector> weak_factory_; |
| 194 | 194 |
| 195 DISALLOW_COPY_AND_ASSIGN(DeviceStatusCollector); | 195 DISALLOW_COPY_AND_ASSIGN(DeviceStatusCollector); |
| 196 }; | 196 }; |
| 197 | 197 |
| 198 } // namespace policy | 198 } // namespace policy |
| 199 | 199 |
| 200 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ | 200 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ |
| OLD | NEW |