| Index: chrome/browser/password_manager/account_chooser_infobar_delegate_android.h
|
| diff --git a/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h
|
| index 7ac175ad383cd4b31078564a9c4339bd9a16a081..3d1060dee3d251c42fa803e5713d16843e86413f 100644
|
| --- a/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h
|
| +++ b/chrome/browser/password_manager/account_chooser_infobar_delegate_android.h
|
| @@ -29,8 +29,9 @@ class AccountChooserInfoBarDelegateAndroid : public infobars::InfoBarDelegate {
|
|
|
| ~AccountChooserInfoBarDelegateAndroid() override;
|
|
|
| - const ScopedVector<autofill::PasswordForm>& local_credentials_forms() const {
|
| - return ui_controller_->local_credentials_forms();
|
| + const std::vector<const autofill::PasswordForm*>&
|
| + local_credentials_forms() const {
|
| + return ui_controller_->GetCurrentForms();
|
| }
|
|
|
| void ChooseCredential(size_t credential_index,
|
|
|