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; |
| 53 virtual void SetClientAreaSize(int width, int height) OVERRIDE; |
52 | 54 |
53 // NativeWindowDelegate implementation: | 55 // NativeWindowDelegate implementation: |
54 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; | 56 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
55 | 57 |
56 // SigninScreenHandlerDelegate implementation: | 58 // SigninScreenHandlerDelegate implementation: |
57 virtual void CancelPasswordChangedFlow() OVERRIDE; | 59 virtual void CancelPasswordChangedFlow() OVERRIDE; |
58 virtual void CancelUserAdding() OVERRIDE; | 60 virtual void CancelUserAdding() OVERRIDE; |
59 virtual void CreateAccount() OVERRIDE; | 61 virtual void CreateAccount() OVERRIDE; |
60 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; | 62 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; |
61 virtual void Login(const UserContext& user_context) OVERRIDE; | 63 virtual void Login(const UserContext& user_context) OVERRIDE; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 114 |
113 // Reference to the WebUI handling layer for the login screen | 115 // Reference to the WebUI handling layer for the login screen |
114 LoginDisplayWebUIHandler* webui_handler_; | 116 LoginDisplayWebUIHandler* webui_handler_; |
115 | 117 |
116 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); | 118 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); |
117 }; | 119 }; |
118 | 120 |
119 } // namespace chromeos | 121 } // namespace chromeos |
120 | 122 |
121 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 123 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
OLD | NEW |