| 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 29 matching lines...) Expand all Loading... |
| 40 virtual void OnUserImageChanged(const User& user) OVERRIDE; | 40 virtual void OnUserImageChanged(const User& user) OVERRIDE; |
| 41 virtual void OnUserRemoved(const std::string& username) OVERRIDE; | 41 virtual void OnUserRemoved(const std::string& username) OVERRIDE; |
| 42 virtual void SetUIEnabled(bool is_enabled) OVERRIDE; | 42 virtual void SetUIEnabled(bool is_enabled) OVERRIDE; |
| 43 virtual void ShowError(int error_msg_id, | 43 virtual void ShowError(int error_msg_id, |
| 44 int login_attempts, | 44 int login_attempts, |
| 45 HelpAppLauncher::HelpTopic help_topic_id) OVERRIDE; | 45 HelpAppLauncher::HelpTopic help_topic_id) OVERRIDE; |
| 46 virtual void ShowErrorScreen(LoginDisplay::SigninError error_id) OVERRIDE; | 46 virtual void ShowErrorScreen(LoginDisplay::SigninError error_id) OVERRIDE; |
| 47 virtual void ShowGaiaPasswordChanged(const std::string& username) OVERRIDE; | 47 virtual void ShowGaiaPasswordChanged(const std::string& username) OVERRIDE; |
| 48 virtual void ShowPasswordChangedDialog(bool show_password_error) OVERRIDE; | 48 virtual void ShowPasswordChangedDialog(bool show_password_error) OVERRIDE; |
| 49 virtual void ShowSigninUI(const std::string& email) OVERRIDE; | 49 virtual void ShowSigninUI(const std::string& email) OVERRIDE; |
| 50 virtual void ShowControlBar(bool show) OVERRIDE; | |
| 51 virtual void SetKeyboardState(bool shown) OVERRIDE; | |
| 52 virtual void SetClientAreaSize(int width, int height) OVERRIDE; | |
| 53 | 50 |
| 54 // NativeWindowDelegate implementation: | 51 // NativeWindowDelegate implementation: |
| 55 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; | 52 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
| 56 | 53 |
| 57 // SigninScreenHandlerDelegate implementation: | 54 // SigninScreenHandlerDelegate implementation: |
| 58 virtual void CancelPasswordChangedFlow() OVERRIDE; | 55 virtual void CancelPasswordChangedFlow() OVERRIDE; |
| 59 virtual void CancelUserAdding() OVERRIDE; | 56 virtual void CancelUserAdding() OVERRIDE; |
| 60 virtual void CreateAccount() OVERRIDE; | 57 virtual void CreateAccount() OVERRIDE; |
| 61 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; | 58 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; |
| 62 virtual void Login(const UserContext& user_context) OVERRIDE; | 59 virtual void Login(const UserContext& user_context) OVERRIDE; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 110 |
| 114 scoped_ptr<GaiaScreen> gaia_screen_; | 111 scoped_ptr<GaiaScreen> gaia_screen_; |
| 115 scoped_ptr<UserSelectionScreen> user_selection_screen_; | 112 scoped_ptr<UserSelectionScreen> user_selection_screen_; |
| 116 | 113 |
| 117 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); | 114 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); |
| 118 }; | 115 }; |
| 119 | 116 |
| 120 } // namespace chromeos | 117 } // namespace chromeos |
| 121 | 118 |
| 122 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 119 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
| OLD | NEW |