| 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 <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 namespace base { | 42 namespace base { |
| 43 class DictionaryValue; | 43 class DictionaryValue; |
| 44 class ListValue; | 44 class ListValue; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace chromeos { | 47 namespace chromeos { |
| 48 | 48 |
| 49 class AuthenticatedUserEmailRetriever; | 49 class AuthenticatedUserEmailRetriever; |
| 50 class CaptivePortalWindowProxy; | 50 class CaptivePortalWindowProxy; |
| 51 class CoreOobeActor; | 51 class CoreOobeActor; |
| 52 class ErrorScreensHistogramHelper; |
| 52 class GaiaScreenHandler; | 53 class GaiaScreenHandler; |
| 53 class NativeWindowDelegate; | 54 class NativeWindowDelegate; |
| 54 class SupervisedUserCreationScreenHandler; | 55 class SupervisedUserCreationScreenHandler; |
| 55 class User; | 56 class User; |
| 56 class UserContext; | 57 class UserContext; |
| 57 | 58 |
| 58 // Helper class to pass initial parameters to the login screen. | 59 // Helper class to pass initial parameters to the login screen. |
| 59 class LoginScreenContext { | 60 class LoginScreenContext { |
| 60 public: | 61 public: |
| 61 LoginScreenContext(); | 62 LoginScreenContext(); |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 | 531 |
| 531 // Input Method Engine state used at signin screen. | 532 // Input Method Engine state used at signin screen. |
| 532 scoped_refptr<input_method::InputMethodManager::State> ime_state_; | 533 scoped_refptr<input_method::InputMethodManager::State> ime_state_; |
| 533 | 534 |
| 534 // This callback captures "focusPod finished" event for tests. | 535 // This callback captures "focusPod finished" event for tests. |
| 535 base::Closure test_focus_pod_callback_; | 536 base::Closure test_focus_pod_callback_; |
| 536 | 537 |
| 537 // True if SigninScreenHandler has already been added to OobeUI observers. | 538 // True if SigninScreenHandler has already been added to OobeUI observers. |
| 538 bool oobe_ui_observer_added_; | 539 bool oobe_ui_observer_added_; |
| 539 | 540 |
| 541 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; |
| 542 |
| 540 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 543 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 541 | 544 |
| 542 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 545 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 543 }; | 546 }; |
| 544 | 547 |
| 545 } // namespace chromeos | 548 } // namespace chromeos |
| 546 | 549 |
| 547 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 550 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |