| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_ATTESTATION_PLATFORM_VERIFICATION_FLOW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ATTESTATION_PLATFORM_VERIFICATION_FLOW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ATTESTATION_PLATFORM_VERIFICATION_FLOW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ATTESTATION_PLATFORM_VERIFICATION_FLOW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 class User; | 30 class User; |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace user_prefs { | 33 namespace user_prefs { |
| 34 class PrefRegistrySyncable; | 34 class PrefRegistrySyncable; |
| 35 } | 35 } |
| 36 | 36 |
| 37 namespace chromeos { | 37 namespace chromeos { |
| 38 | 38 |
| 39 class CryptohomeClient; | 39 class CryptohomeClient; |
| 40 class UserManager; | |
| 41 | 40 |
| 42 namespace attestation { | 41 namespace attestation { |
| 43 | 42 |
| 44 class AttestationFlow; | 43 class AttestationFlow; |
| 45 class PlatformVerificationFlowTest; | 44 class PlatformVerificationFlowTest; |
| 46 | 45 |
| 47 // This class allows platform verification for the content protection use case. | 46 // This class allows platform verification for the content protection use case. |
| 48 // All methods must only be called on the UI thread. Example: | 47 // All methods must only be called on the UI thread. Example: |
| 49 // scoped_refptr<PlatformVerificationFlow> verifier = | 48 // scoped_refptr<PlatformVerificationFlow> verifier = |
| 50 // new PlatformVerificationFlow(); | 49 // new PlatformVerificationFlow(); |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 scoped_ptr<Delegate> default_delegate_; | 272 scoped_ptr<Delegate> default_delegate_; |
| 274 base::TimeDelta timeout_delay_; | 273 base::TimeDelta timeout_delay_; |
| 275 | 274 |
| 276 DISALLOW_COPY_AND_ASSIGN(PlatformVerificationFlow); | 275 DISALLOW_COPY_AND_ASSIGN(PlatformVerificationFlow); |
| 277 }; | 276 }; |
| 278 | 277 |
| 279 } // namespace attestation | 278 } // namespace attestation |
| 280 } // namespace chromeos | 279 } // namespace chromeos |
| 281 | 280 |
| 282 #endif // CHROME_BROWSER_CHROMEOS_ATTESTATION_PLATFORM_VERIFICATION_FLOW_H_ | 281 #endif // CHROME_BROWSER_CHROMEOS_ATTESTATION_PLATFORM_VERIFICATION_FLOW_H_ |
| OLD | NEW |