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_POLICY_DEVICE_STATUS_COLLECTOR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ |
6 #define CHROME_BROWSER_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/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/time.h" | 13 #include "base/time.h" |
14 #include "base/timer.h" | 14 #include "base/timer.h" |
15 #include "chrome/browser/chromeos/version_loader.h" | 15 #include "chrome/browser/chromeos/version_loader.h" |
16 #include "chrome/browser/idle.h" | 16 #include "chrome/browser/idle.h" |
17 #include "chrome/browser/policy/cloud_policy_client.h" | 17 #include "chrome/browser/policy/cloud/cloud_policy_client.h" |
18 #include "chrome/common/cancelable_task_tracker.h" | 18 #include "chrome/common/cancelable_task_tracker.h" |
19 #include "content/public/browser/geolocation.h" | 19 #include "content/public/browser/geolocation.h" |
20 #include "content/public/browser/notification_observer.h" | 20 #include "content/public/browser/notification_observer.h" |
21 #include "content/public/common/geoposition.h" | 21 #include "content/public/common/geoposition.h" |
22 | 22 |
23 namespace chromeos { | 23 namespace chromeos { |
24 class CrosSettings; | 24 class CrosSettings; |
25 namespace system { | 25 namespace system { |
26 class StatisticsProvider; | 26 class StatisticsProvider; |
27 } | 27 } |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 bool report_version_info_; | 173 bool report_version_info_; |
174 bool report_activity_times_; | 174 bool report_activity_times_; |
175 bool report_boot_mode_; | 175 bool report_boot_mode_; |
176 bool report_location_; | 176 bool report_location_; |
177 | 177 |
178 DISALLOW_COPY_AND_ASSIGN(DeviceStatusCollector); | 178 DISALLOW_COPY_AND_ASSIGN(DeviceStatusCollector); |
179 }; | 179 }; |
180 | 180 |
181 } // namespace policy | 181 } // namespace policy |
182 | 182 |
183 #endif // CHROME_BROWSER_POLICY_DEVICE_STATUS_COLLECTOR_H_ | 183 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_STATUS_COLLECTOR_H_ |
OLD | NEW |