Index: chrome/browser/chromeos/login/existing_user_controller.cc |
=================================================================== |
--- chrome/browser/chromeos/login/existing_user_controller.cc (revision 170577) |
+++ chrome/browser/chromeos/login/existing_user_controller.cc (working copy) |
@@ -190,10 +190,8 @@ |
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()) || |
- (*it)->GetType() != User::USER_TYPE_REGULAR) { |
+ if (LoginUtils::IsWhitelisted((*it)->email())) |
filtered_users.push_back(*it); |
- } |
} |
} |