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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 | 451 |
452 bool ShouldLoadGaia() const; | 452 bool ShouldLoadGaia() const; |
453 | 453 |
454 // Shows signin. | 454 // Shows signin. |
455 void OnShowAddUser(); | 455 void OnShowAddUser(); |
456 | 456 |
457 net::Error FrameError() const; | 457 net::Error FrameError() const; |
458 | 458 |
459 // input_method::ImeKeyboard::Observer implementation: | 459 // input_method::ImeKeyboard::Observer implementation: |
460 void OnCapsLockChanged(bool enabled) override; | 460 void OnCapsLockChanged(bool enabled) override; |
| 461 void OnLayoutChanging(const std::string& layout_name) override {} |
461 | 462 |
462 // Callback invoked after the feedback is finished. | 463 // Callback invoked after the feedback is finished. |
463 void OnFeedbackFinished(); | 464 void OnFeedbackFinished(); |
464 | 465 |
465 // Called when the cros property controlling allowed input methods changes. | 466 // Called when the cros property controlling allowed input methods changes. |
466 void OnAllowedInputMethodsChanged(); | 467 void OnAllowedInputMethodsChanged(); |
467 | 468 |
468 // Current UI state of the signin screen. | 469 // Current UI state of the signin screen. |
469 UIState ui_state_ = UI_STATE_UNKNOWN; | 470 UIState ui_state_ = UI_STATE_UNKNOWN; |
470 | 471 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 lock_screen_apps_observer_; | 556 lock_screen_apps_observer_; |
556 | 557 |
557 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 558 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
558 | 559 |
559 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 560 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
560 }; | 561 }; |
561 | 562 |
562 } // namespace chromeos | 563 } // namespace chromeos |
563 | 564 |
564 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 565 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |