Chromium Code Reviews| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 | 461 |
| 462 // input_method::ImeKeyboard::Observer: we are not interested in layout: | |
|
reveman
2017/06/09 14:53:17
Simply "// input_method::ImeKeyboard::Observer imp
jclinton
2017/06/09 16:36:02
Done.
| |
| 463 void OnLayoutChanged(const std::string& layout_name) override{}; | |
|
reveman
2017/06/09 14:53:17
nit: s/override{};/override {}/
jclinton
2017/06/09 16:36:02
Done.
| |
| 464 | |
| 462 // Callback invoked after the feedback is finished. | 465 // Callback invoked after the feedback is finished. |
| 463 void OnFeedbackFinished(); | 466 void OnFeedbackFinished(); |
| 464 | 467 |
| 465 // Called when the cros property controlling allowed input methods changes. | 468 // Called when the cros property controlling allowed input methods changes. |
| 466 void OnAllowedInputMethodsChanged(); | 469 void OnAllowedInputMethodsChanged(); |
| 467 | 470 |
| 468 // Update the keyboard settings for |account_id|. | 471 // Update the keyboard settings for |account_id|. |
| 469 void SetKeyboardSettings(const AccountId& account_id); | 472 void SetKeyboardSettings(const AccountId& account_id); |
| 470 | 473 |
| 471 // Current UI state of the signin screen. | 474 // Current UI state of the signin screen. |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 558 lock_screen_apps_observer_; | 561 lock_screen_apps_observer_; |
| 559 | 562 |
| 560 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 563 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 561 | 564 |
| 562 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 565 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 563 }; | 566 }; |
| 564 | 567 |
| 565 } // namespace chromeos | 568 } // namespace chromeos |
| 566 | 569 |
| 567 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 570 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |