| Index: chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| diff --git a/chrome/browser/chromeos/login/ui/webui_login_display.cc b/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| index edcc167d15aac4aa39811b4b96481f879911911d..5eb3a38e37ddac1284f909758b87cb75655c9295 100644
|
| --- a/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| +++ b/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| @@ -238,6 +238,11 @@ void WebUILoginDisplay::OnSigninScreenReady() {
|
| delegate_->OnSigninScreenReady();
|
| }
|
|
|
| +void WebUILoginDisplay::OnGaiaScreenReady() {
|
| + if (delegate_)
|
| + delegate_->OnGaiaScreenReady();
|
| +}
|
| +
|
| void WebUILoginDisplay::RemoveUser(const AccountId& account_id) {
|
| SignInScreenController::Get()->RemoveUser(account_id);
|
| }
|
| @@ -325,7 +330,7 @@ void WebUILoginDisplay::Signout() {
|
|
|
| void WebUILoginDisplay::OnUserActivity(const ui::Event* event) {
|
| if (delegate_)
|
| - delegate_->ResetPublicSessionAutoLoginTimer();
|
| + delegate_->ResetAutoLoginTimer();
|
| }
|
|
|
| bool WebUILoginDisplay::IsUserWhitelisted(const AccountId& account_id) {
|
|
|