Chromium Code Reviews| Index: components/user_manager/user_manager_base.cc |
| diff --git a/components/user_manager/user_manager_base.cc b/components/user_manager/user_manager_base.cc |
| index 2c7b3ffddaff6b26cf2afabb450f9794db72702e..fd1529b913549a72826ce8660fd464220bea28c2 100644 |
| --- a/components/user_manager/user_manager_base.cc |
| +++ b/components/user_manager/user_manager_base.cc |
| @@ -490,7 +490,8 @@ void UserManagerBase::ParseUserList(const base::ListValue& users_list, |
| continue; |
| } |
| - const AccountId account_id = known_user::GetAccountId(email, std::string()); |
| + const AccountId account_id = known_user::GetAccountId( |
| + email, std::string() /* gaia_id */, AccountType::UNKNOWN); |
|
Roger Tawa OOO till Jul 10th
2016/12/05 16:34:32
It's unclear to me why the type is unknown. If th
Alexander Alekseev
2016/12/06 02:21:14
"Known_user::GetAccountId()" is a bit tricky. This
|
| if (existing_users.find(account_id) != existing_users.end() || |
| !users_set->insert(account_id).second) { |