Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CLOUD_POLICY_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_POLICY_CLOUD_POLICY_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_POLICY_CLOUD_POLICY_CONTROLLER_H_ | 6 #define CHROME_BROWSER_POLICY_CLOUD_POLICY_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "chrome/browser/policy/cloud_policy_data_store.h" | 11 #include "chrome/browser/policy/cloud_policy_data_store.h" |
| 12 #include "chrome/browser/policy/device_management_backend.h" | 12 #include "chrome/browser/policy/device_management_backend.h" |
| 13 | 13 |
| 14 namespace enterprise_management { class DeviceStatusReportRequest; } | |
|
Mattias Nissler (ping if slow)
2011/11/25 14:15:19
needed?
Patrick Dubroy
2011/11/29 18:01:46
Nope. Done.
| |
| 15 | |
| 14 namespace policy { | 16 namespace policy { |
| 15 | 17 |
| 16 class CloudPolicyCacheBase; | 18 class CloudPolicyCacheBase; |
| 17 class DelayedWorkScheduler; | 19 class DelayedWorkScheduler; |
| 18 class DeviceManagementService; | 20 class DeviceManagementService; |
| 19 class DeviceTokenFetcher; | 21 class DeviceTokenFetcher; |
| 20 class PolicyNotifier; | 22 class PolicyNotifier; |
| 21 | 23 |
| 22 // Coordinates the actions of DeviceTokenFetcher, CloudPolicyDataStore, | 24 // Coordinates the actions of DeviceTokenFetcher, CloudPolicyDataStore, |
| 23 // DeviceManagementBackend, and CloudPolicyCache: calls their methods and | 25 // DeviceManagementBackend, and CloudPolicyCache: calls their methods and |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 121 int64 effective_policy_refresh_error_delay_ms_; | 123 int64 effective_policy_refresh_error_delay_ms_; |
| 122 | 124 |
| 123 scoped_ptr<DelayedWorkScheduler> scheduler_; | 125 scoped_ptr<DelayedWorkScheduler> scheduler_; |
| 124 | 126 |
| 125 DISALLOW_COPY_AND_ASSIGN(CloudPolicyController); | 127 DISALLOW_COPY_AND_ASSIGN(CloudPolicyController); |
| 126 }; | 128 }; |
| 127 | 129 |
| 128 } // namespace policy | 130 } // namespace policy |
| 129 | 131 |
| 130 #endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_CONTROLLER_H_ | 132 #endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_CONTROLLER_H_ |
| OLD | NEW |