| Index: chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
|
| diff --git a/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
|
| index face0fe81040d474fbac82c4c38040945136be38..a3b587d82f6f14bd595ea5c8b9ae595a90e54338 100644
|
| --- a/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
|
| +++ b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.cc
|
| @@ -34,10 +34,10 @@ void AccountChooserInfoBarDelegateAndroid::ChooseCredential(
|
| ui_controller_->ChooseCredential(autofill::PasswordForm(), credential_type);
|
| return;
|
| }
|
| - DCHECK(credential_type == CredentialType::CREDENTIAL_TYPE_LOCAL ||
|
| + DCHECK(credential_type == CredentialType::CREDENTIAL_TYPE_PASSWORD ||
|
| credential_type == CredentialType::CREDENTIAL_TYPE_FEDERATED);
|
| const auto& credentials_forms =
|
| - (credential_type == CredentialType::CREDENTIAL_TYPE_LOCAL)
|
| + (credential_type == CredentialType::CREDENTIAL_TYPE_PASSWORD)
|
| ? ui_controller_->GetCurrentForms()
|
| : ui_controller_->GetFederatedForms();
|
| if (credential_index < credentials_forms.size()) {
|
|
|