| Index: components/password_manager/content/browser/credential_manager_impl.cc
|
| diff --git a/components/password_manager/content/browser/credential_manager_impl.cc b/components/password_manager/content/browser/credential_manager_impl.cc
|
| index 7c01beaf2815e131f5d851aea2e365f3ea2222e0..fcd6940a168aeee27ab1721c875dce1923789d2c 100644
|
| --- a/components/password_manager/content/browser/credential_manager_impl.cc
|
| +++ b/components/password_manager/content/browser/credential_manager_impl.cc
|
| @@ -104,8 +104,7 @@ void CredentialManagerImpl::OnProvisionalSaveComplete() {
|
| // If this is a federated credential, check it against the federated matches
|
| // produced by the PasswordFormManager. If a match is found, update it and
|
| // return.
|
| - for (const auto& match :
|
| - form_manager_->form_fetcher()->GetFederatedMatches()) {
|
| + for (auto* match : form_manager_->form_fetcher()->GetFederatedMatches()) {
|
| if (match->username_value == form.username_value &&
|
| match->federation_origin.IsSameOriginWith(form.federation_origin)) {
|
| form_manager_->Update(*match);
|
|
|