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

Side by Side Diff: chromeos/login/auth/login_performer.h

Issue 2549043002: chromeos: Cleanup class/struct fwd declarations (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « chromeos/dbus/shill_profile_client.h ('k') | chromeos/network/network_configuration_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_ 5 #ifndef CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_
6 #define CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_ 6 #define CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "chromeos/chromeos_export.h" 14 #include "chromeos/chromeos_export.h"
15 #include "chromeos/login/auth/auth_status_consumer.h" 15 #include "chromeos/login/auth/auth_status_consumer.h"
16 #include "chromeos/login/auth/authenticator.h" 16 #include "chromeos/login/auth/authenticator.h"
17 #include "chromeos/login/auth/extended_authenticator.h" 17 #include "chromeos/login/auth/extended_authenticator.h"
18 #include "chromeos/login/auth/user_context.h" 18 #include "chromeos/login/auth/user_context.h"
19 #include "google_apis/gaia/google_service_auth_error.h" 19 #include "google_apis/gaia/google_service_auth_error.h"
20 20
21 class AccountId; 21 class AccountId;
22 22
23 namespace net { 23 namespace net {
24 class URLRequestContextGetter; 24 class URLRequestContextGetter;
25 } 25 }
26 26
27 namespace policy {
28 class WildcardLoginChecker;
29 }
30
31 namespace content { 27 namespace content {
32 class BrowserContext; 28 class BrowserContext;
33 } 29 }
34 30
35 namespace chromeos { 31 namespace chromeos {
36 32
37 // This class encapsulates sign in operations. 33 // This class encapsulates sign in operations.
38 // Sign in is performed in a way that offline auth is executed first. 34 // Sign in is performed in a way that offline auth is executed first.
39 // Once offline auth is OK - user homedir is mounted, UI is launched. 35 // Once offline auth is OK - user homedir is mounted, UI is launched.
40 // At this point LoginPerformer |delegate_| is destroyed and it releases 36 // At this point LoginPerformer |delegate_| is destroyed and it releases
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 // Authorization mode type. 219 // Authorization mode type.
224 AuthorizationMode auth_mode_; 220 AuthorizationMode auth_mode_;
225 221
226 base::WeakPtrFactory<LoginPerformer> weak_factory_; 222 base::WeakPtrFactory<LoginPerformer> weak_factory_;
227 DISALLOW_COPY_AND_ASSIGN(LoginPerformer); 223 DISALLOW_COPY_AND_ASSIGN(LoginPerformer);
228 }; 224 };
229 225
230 } // namespace chromeos 226 } // namespace chromeos
231 227
232 #endif // CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_ 228 #endif // CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_
OLDNEW
« no previous file with comments | « chromeos/dbus/shill_profile_client.h ('k') | chromeos/network/network_configuration_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698