| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.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; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 // Authorization mode type. | 219 // Authorization mode type. |
| 220 AuthorizationMode auth_mode_; | 220 AuthorizationMode auth_mode_; |
| 221 | 221 |
| 222 base::WeakPtrFactory<LoginPerformer> weak_factory_; | 222 base::WeakPtrFactory<LoginPerformer> weak_factory_; |
| 223 DISALLOW_COPY_AND_ASSIGN(LoginPerformer); | 223 DISALLOW_COPY_AND_ASSIGN(LoginPerformer); |
| 224 }; | 224 }; |
| 225 | 225 |
| 226 } // namespace chromeos | 226 } // namespace chromeos |
| 227 | 227 |
| 228 #endif // CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_ | 228 #endif // CHROMEOS_LOGIN_AUTH_LOGIN_PERFORMER_H_ |
| OLD | NEW |