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