OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 virtual void SetUIEnabled(bool is_enabled) OVERRIDE; | 42 virtual void SetUIEnabled(bool is_enabled) OVERRIDE; |
43 virtual void SelectPod(int index) OVERRIDE; | 43 virtual void SelectPod(int index) OVERRIDE; |
44 virtual void ShowError(int error_msg_id, | 44 virtual void ShowError(int error_msg_id, |
45 int login_attempts, | 45 int login_attempts, |
46 HelpAppLauncher::HelpTopic help_topic_id) OVERRIDE; | 46 HelpAppLauncher::HelpTopic help_topic_id) OVERRIDE; |
47 virtual void ShowErrorScreen(LoginDisplay::SigninError error_id) OVERRIDE; | 47 virtual void ShowErrorScreen(LoginDisplay::SigninError error_id) OVERRIDE; |
48 virtual void ShowGaiaPasswordChanged(const std::string& username) OVERRIDE; | 48 virtual void ShowGaiaPasswordChanged(const std::string& username) OVERRIDE; |
49 virtual void ShowPasswordChangedDialog(bool show_password_error) OVERRIDE; | 49 virtual void ShowPasswordChangedDialog(bool show_password_error) OVERRIDE; |
50 virtual void ShowSigninUI(const std::string& email) OVERRIDE; | 50 virtual void ShowSigninUI(const std::string& email) OVERRIDE; |
51 virtual void ShowControlBar(bool show) OVERRIDE; | 51 virtual void ShowControlBar(bool show) OVERRIDE; |
| 52 virtual void SetKeyboardState(bool shown) OVERRIDE; |
52 | 53 |
53 // NativeWindowDelegate implementation: | 54 // NativeWindowDelegate implementation: |
54 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; | 55 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
55 | 56 |
56 // SigninScreenHandlerDelegate implementation: | 57 // SigninScreenHandlerDelegate implementation: |
57 virtual void CancelPasswordChangedFlow() OVERRIDE; | 58 virtual void CancelPasswordChangedFlow() OVERRIDE; |
58 virtual void CancelUserAdding() OVERRIDE; | 59 virtual void CancelUserAdding() OVERRIDE; |
59 virtual void CreateAccount() OVERRIDE; | 60 virtual void CreateAccount() OVERRIDE; |
60 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; | 61 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; |
61 virtual void Login(const UserContext& user_context) OVERRIDE; | 62 virtual void Login(const UserContext& user_context) OVERRIDE; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 113 |
113 // Reference to the WebUI handling layer for the login screen | 114 // Reference to the WebUI handling layer for the login screen |
114 LoginDisplayWebUIHandler* webui_handler_; | 115 LoginDisplayWebUIHandler* webui_handler_; |
115 | 116 |
116 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); | 117 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); |
117 }; | 118 }; |
118 | 119 |
119 } // namespace chromeos | 120 } // namespace chromeos |
120 | 121 |
121 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 122 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
OLD | NEW |