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

Unified Diff: components/autofill/browser/password_autofill_manager.cc

Issue 15660018: [autofill] Add support for PSL domain matching for password autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compile error for browsertests Created 7 years, 7 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/autofill/browser/password_autofill_manager.cc
diff --git a/components/autofill/browser/password_autofill_manager.cc b/components/autofill/browser/password_autofill_manager.cc
index 55ae9a1ac5a81e87476677f422519d03f03e4ddc..77f6d743d1dfd5c6a6373b8162a71f9d6e078cfa 100644
--- a/components/autofill/browser/password_autofill_manager.cc
+++ b/components/autofill/browser/password_autofill_manager.cc
@@ -63,8 +63,8 @@ bool PasswordAutofillManager::WillFillUserNameAndPassword(
// Scan additional logins for a match.
for (PasswordFormFillData::LoginCollection::const_iterator iter =
- fill_data.additional_logins.begin();
- iter != fill_data.additional_logins.end(); ++iter) {
+ fill_data.additional_logins_passwords.begin();
+ iter != fill_data.additional_logins_passwords.end(); ++iter) {
if (iter->first == current_username)
return true;
}

Powered by Google App Engine
This is Rietveld 408576698