| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "components/user_manager/user_manager.h" | 30 #include "components/user_manager/user_manager.h" |
| 31 #include "content/public/browser/notification_observer.h" | 31 #include "content/public/browser/notification_observer.h" |
| 32 #include "content/public/browser/notification_registrar.h" | 32 #include "content/public/browser/notification_registrar.h" |
| 33 #include "content/public/browser/web_ui.h" | 33 #include "content/public/browser/web_ui.h" |
| 34 #include "net/base/net_errors.h" | 34 #include "net/base/net_errors.h" |
| 35 #include "ui/base/ime/chromeos/ime_keyboard.h" | 35 #include "ui/base/ime/chromeos/ime_keyboard.h" |
| 36 #include "ui/base/ime/chromeos/input_method_manager.h" | 36 #include "ui/base/ime/chromeos/input_method_manager.h" |
| 37 #include "ui/events/event_handler.h" | 37 #include "ui/events/event_handler.h" |
| 38 | 38 |
| 39 class AccountId; | 39 class AccountId; |
| 40 class EasyUnlockService; | |
| 41 | 40 |
| 42 namespace base { | 41 namespace base { |
| 43 class DictionaryValue; | 42 class DictionaryValue; |
| 44 class ListValue; | 43 class ListValue; |
| 45 } | 44 } |
| 46 | 45 |
| 47 namespace chromeos { | 46 namespace chromeos { |
| 48 | 47 |
| 49 class CaptivePortalWindowProxy; | |
| 50 class CoreOobeActor; | 48 class CoreOobeActor; |
| 51 class ErrorScreensHistogramHelper; | 49 class ErrorScreensHistogramHelper; |
| 52 class GaiaScreenHandler; | 50 class GaiaScreenHandler; |
| 53 class LoginFeedback; | 51 class LoginFeedback; |
| 54 class NativeWindowDelegate; | 52 class NativeWindowDelegate; |
| 55 class SupervisedUserCreationScreenHandler; | 53 class SupervisedUserCreationScreenHandler; |
| 56 class User; | 54 class User; |
| 57 class UserContext; | 55 class UserContext; |
| 58 | 56 |
| 59 // Helper class to pass initial parameters to the login screen. | 57 // Helper class to pass initial parameters to the login screen. |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 std::unique_ptr<LoginFeedback> login_feedback_; | 511 std::unique_ptr<LoginFeedback> login_feedback_; |
| 514 | 512 |
| 515 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 513 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 516 | 514 |
| 517 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 515 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 518 }; | 516 }; |
| 519 | 517 |
| 520 } // namespace chromeos | 518 } // namespace chromeos |
| 521 | 519 |
| 522 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 520 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |