| 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 fcd6940a168aeee27ab1721c875dce1923789d2c..e784e5d3b1679bd04190b4570c972e4a0385a246 100644
|
| --- a/components/password_manager/content/browser/credential_manager_impl.cc
|
| +++ b/components/password_manager/content/browser/credential_manager_impl.cc
|
| @@ -100,7 +100,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.
|
| @@ -238,7 +238,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);
|
|
|