| 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_ENROLLMENT_HANDLER_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_HANDLER_CHROMEOS_H_ | 
| 6 #define CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_HANDLER_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_HANDLER_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/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" | 
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" | 
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" | 
| 15 #include "chrome/browser/chromeos/policy/device_cloud_policy_manager_chromeos.h" | 15 #include "chrome/browser/chromeos/policy/device_cloud_policy_manager_chromeos.h" | 
| 16 #include "chrome/browser/chromeos/policy/device_cloud_policy_validator.h" | 16 #include "chrome/browser/chromeos/policy/device_cloud_policy_validator.h" | 
| 17 #include "chrome/browser/chromeos/policy/enterprise_install_attributes.h" | 17 #include "chrome/browser/chromeos/policy/enterprise_install_attributes.h" | 
| 18 #include "chrome/browser/policy/cloud/cloud_policy_client.h" | 18 #include "components/policy/core/common/cloud/cloud_policy_client.h" | 
| 19 #include "chrome/browser/policy/cloud/cloud_policy_store.h" | 19 #include "components/policy/core/common/cloud/cloud_policy_store.h" | 
| 20 #include "google_apis/gaia/gaia_oauth_client.h" | 20 #include "google_apis/gaia/gaia_oauth_client.h" | 
| 21 | 21 | 
| 22 namespace base { | 22 namespace base { | 
| 23 class SequencedTaskRunner; | 23 class SequencedTaskRunner; | 
| 24 } | 24 } | 
| 25 | 25 | 
| 26 namespace chromeos { | 26 namespace chromeos { | 
| 27 class DeviceOAuth2TokenService; | 27 class DeviceOAuth2TokenService; | 
| 28 } | 28 } | 
| 29 | 29 | 
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 176 | 176 | 
| 177   // Used for locking the device and getting the OAuth2 token service. | 177   // Used for locking the device and getting the OAuth2 token service. | 
| 178   base::WeakPtrFactory<EnrollmentHandlerChromeOS> weak_ptr_factory_; | 178   base::WeakPtrFactory<EnrollmentHandlerChromeOS> weak_ptr_factory_; | 
| 179 | 179 | 
| 180   DISALLOW_COPY_AND_ASSIGN(EnrollmentHandlerChromeOS); | 180   DISALLOW_COPY_AND_ASSIGN(EnrollmentHandlerChromeOS); | 
| 181 }; | 181 }; | 
| 182 | 182 | 
| 183 }  // namespace policy | 183 }  // namespace policy | 
| 184 | 184 | 
| 185 #endif  // CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_HANDLER_CHROMEOS_H_ | 185 #endif  // CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_HANDLER_CHROMEOS_H_ | 
| OLD | NEW | 
|---|