| Index: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| diff --git a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| index 7092cb7f5e29464e629b29e9ee30ff7679477239..1c9da59e384dca9945eca4c95b898318425bb059 100644
|
| --- a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| +++ b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| @@ -85,6 +85,7 @@ class LoginDisplayWebUIHandler {
|
| virtual void ShowGaiaPasswordChanged(const std::string& username) = 0;
|
| virtual void ShowSigninUI(const std::string& email) = 0;
|
| virtual void ShowControlBar(bool show) = 0;
|
| + virtual void SetKeyboardState(bool shown) = 0;
|
| virtual void ShowPasswordChangedDialog(bool show_password_error) = 0;
|
| // Show sign-in screen for the given credentials.
|
| virtual void ShowSigninScreenForCreds(const std::string& username,
|
| @@ -280,6 +281,7 @@ class SigninScreenHandler
|
| virtual void ShowGaiaPasswordChanged(const std::string& username) OVERRIDE;
|
| virtual void ShowSigninUI(const std::string& email) OVERRIDE;
|
| virtual void ShowControlBar(bool show) OVERRIDE;
|
| + virtual void SetKeyboardState(bool shown) OVERRIDE;
|
| virtual void ShowPasswordChangedDialog(bool show_password_error) OVERRIDE;
|
| virtual void ShowErrorScreen(LoginDisplay::SigninError error_id) OVERRIDE;
|
| virtual void ShowSigninScreenForCreds(const std::string& username,
|
|
|