Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: chrome/browser/chromeos/attestation/platform_verification_flow.h

Issue 444903002: [cros] user_manager component - move UserManagerBase and UserManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698