| 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_USER_CLOUD_POLICY_MANAGER_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_CHROMEOS_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/files/file_path.h" | 12 #include "base/files/file_path.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/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
| 17 #include "chrome/browser/policy/cloud/cloud_policy_client.h" | |
| 18 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" | |
| 19 #include "chrome/browser/policy/cloud/cloud_policy_manager.h" | |
| 20 #include "chrome/browser/policy/cloud/cloud_policy_service.h" | |
| 21 #include "components/browser_context_keyed_service/browser_context_keyed_service
.h" | 17 #include "components/browser_context_keyed_service/browser_context_keyed_service
.h" |
| 18 #include "components/policy/core/common/cloud/cloud_policy_client.h" |
| 19 #include "components/policy/core/common/cloud/cloud_policy_constants.h" |
| 20 #include "components/policy/core/common/cloud/cloud_policy_manager.h" |
| 21 #include "components/policy/core/common/cloud/cloud_policy_service.h" |
| 22 | 22 |
| 23 class GoogleServiceAuthError; | 23 class GoogleServiceAuthError; |
| 24 class PrefService; | 24 class PrefService; |
| 25 | 25 |
| 26 namespace base { | 26 namespace base { |
| 27 class SequencedTaskRunner; | 27 class SequencedTaskRunner; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace net { | 30 namespace net { |
| 31 class URLRequestContextGetter; | 31 class URLRequestContextGetter; |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 base::Time time_init_completed_; | 155 base::Time time_init_completed_; |
| 156 base::Time time_token_available_; | 156 base::Time time_token_available_; |
| 157 base::Time time_client_registered_; | 157 base::Time time_client_registered_; |
| 158 | 158 |
| 159 DISALLOW_COPY_AND_ASSIGN(UserCloudPolicyManagerChromeOS); | 159 DISALLOW_COPY_AND_ASSIGN(UserCloudPolicyManagerChromeOS); |
| 160 }; | 160 }; |
| 161 | 161 |
| 162 } // namespace policy | 162 } // namespace policy |
| 163 | 163 |
| 164 #endif // CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_CHROMEOS_H_ | 164 #endif // CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_CHROMEOS_H_ |
| OLD | NEW |