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