| OLD | NEW |
| 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 base { |
| 24 class TaskRunner; |
| 25 } |
| 26 |
| 23 namespace net { | 27 namespace net { |
| 24 class URLRequestContextGetter; | 28 class URLRequestContextGetter; |
| 25 } | 29 } |
| 26 | 30 |
| 27 namespace content { | 31 namespace content { |
| 28 class BrowserContext; | 32 class BrowserContext; |
| 29 } | 33 } |
| 30 | 34 |
| 31 namespace chromeos { | 35 namespace chromeos { |
| 32 | 36 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 // Authorization mode type. | 223 // Authorization mode type. |
| 220 AuthorizationMode auth_mode_; | 224 AuthorizationMode auth_mode_; |
| 221 | 225 |
| 222 base::WeakPtrFactory<LoginPerformer> weak_factory_; | 226 base::WeakPtrFactory<LoginPerformer> weak_factory_; |
| 223 DISALLOW_COPY_AND_ASSIGN(LoginPerformer); | 227 DISALLOW_COPY_AND_ASSIGN(LoginPerformer); |
| 224 }; | 228 }; |
| 225 | 229 |
| 226 } // namespace chromeos | 230 } // namespace chromeos |
| 227 | 231 |
| 228 #endif // CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_ | 232 #endif // CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_ |
| OLD | NEW |