| 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 36ca55a85ac38f8875e861efc1f63a9fef71ca82..dc5a1d31aaaf3400b34059a6e497b96d78bf58d6 100644
|
| --- a/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| +++ b/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| @@ -326,10 +326,10 @@ void WebUILoginDisplay::OnUserActivity(const ui::Event* event) {
|
| delegate_->ResetPublicSessionAutoLoginTimer();
|
| }
|
|
|
| -bool WebUILoginDisplay::IsUserWhitelisted(const std::string& user_id) {
|
| +bool WebUILoginDisplay::IsUserWhitelisted(const AccountId& account_id) {
|
| DCHECK(delegate_);
|
| if (delegate_)
|
| - return delegate_->IsUserWhitelisted(user_id);
|
| + return delegate_->IsUserWhitelisted(account_id);
|
| return true;
|
| }
|
|
|
|
|