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

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: 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 f51edc8805ea765b50702044bc52dcc69ffbf1cc..b8f4a81fd13bb9548e2769cf9a613cc1e5f06f62 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
@@ -53,7 +53,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