| Index: chrome/browser/chromeos/login/existing_user_controller.cc
|
| diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
|
| index e7ec93642eb92cc2f22e6f9a09843a9c64809d9e..cbe85bb9df4b7a50dca519f2403468345e4133d8 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller.cc
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller.cc
|
| @@ -190,8 +190,10 @@ void ExistingUserController::UpdateLoginDisplay(const UserList& users) {
|
| if (show_users_on_signin) {
|
| for (UserList::const_iterator it = users.begin(); it != users.end(); ++it) {
|
| // TODO(xiyuan): Clean user profile whose email is not in whitelist.
|
| - if (LoginUtils::IsWhitelisted((*it)->email()))
|
| + if (LoginUtils::IsWhitelisted((*it)->email()) ||
|
| + (*it)->GetType() != User::USER_TYPE_REGULAR) {
|
| filtered_users.push_back(*it);
|
| + }
|
| }
|
| }
|
|
|
|
|