Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Unified Diff: components/password_manager/core/browser/credential_manager_pending_request_task.cc

Issue 1401723002: Show source of affiliated matches in the drop-down password suggestions list. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test fix Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/password_manager/core/browser/credential_manager_pending_request_task.cc
diff --git a/components/password_manager/core/browser/credential_manager_pending_request_task.cc b/components/password_manager/core/browser/credential_manager_pending_request_task.cc
index 85650de98ac947ba96e80d6589f474bd6b476a96..d31a0eec8344f7d9484a879baa0977e04132c860 100644
--- a/components/password_manager/core/browser/credential_manager_pending_request_task.cc
+++ b/components/password_manager/core/browser/credential_manager_pending_request_task.cc
@@ -54,7 +54,7 @@ void CredentialManagerPendingRequestTask::OnGetPasswordStoreResults(
form = nullptr;
} else if (affiliated_realms_.count(form->signon_realm) &&
AffiliatedMatchHelper::IsValidAndroidCredential(*form)) {
- form->is_affiliated = true;
+ form->is_affiliation_based_match = true;
affiliated_results.push_back(form);
form = nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698