| Index: components/password_manager/core/browser/credential_manager_impl.cc
|
| diff --git a/components/password_manager/core/browser/credential_manager_impl.cc b/components/password_manager/core/browser/credential_manager_impl.cc
|
| index 17b0ba65fe006fcead62d248091ada2ebf23d88a..08e7e6677c6a01ba5e7f659e04cf68bd404aec17 100644
|
| --- a/components/password_manager/core/browser/credential_manager_impl.cc
|
| +++ b/components/password_manager/core/browser/credential_manager_impl.cc
|
| @@ -172,7 +172,7 @@ void CredentialManagerImpl::SendPasswordForm(
|
| CredentialInfo info;
|
| if (form) {
|
| password_manager::CredentialType type_to_return =
|
| - form->federation_origin.unique()
|
| + form->federation_origin.opaque()
|
| ? CredentialType::CREDENTIAL_TYPE_PASSWORD
|
| : CredentialType::CREDENTIAL_TYPE_FEDERATED;
|
| info = CredentialInfo(*form, type_to_return);
|
| @@ -222,7 +222,7 @@ void CredentialManagerImpl::OnProvisionalSaveComplete() {
|
| return;
|
| }
|
|
|
| - if (!form.federation_origin.unique()) {
|
| + if (!form.federation_origin.opaque()) {
|
| // 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.
|
|
|