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

Unified Diff: components/password_manager/core/browser/password_form_manager.h

Issue 1314903003: Updating of all entries in PasswordManager of the same credentials on password update (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments addressed Created 5 years, 4 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/password_form_manager.h
diff --git a/components/password_manager/core/browser/password_form_manager.h b/components/password_manager/core/browser/password_form_manager.h
index df658b148166b59574483802497c1f5084af6575..b7e4c104ffd879fd36d0b1095327edcb40fdefba 100644
--- a/components/password_manager/core/browser/password_form_manager.h
+++ b/components/password_manager/core/browser/password_form_manager.h
@@ -378,6 +378,10 @@ class PasswordFormManager : public PasswordStoreConsumer {
// frequently require lookups by username value in IsNewLogin.
autofill::PasswordFormMap best_matches_;
+ // Set of forms from DB that are not in |best_matches_| and that are psl
vabr (Chromium) 2015/08/28 10:47:23 nits: DB -> PasswordStore psl -> PSL
dvadym 2015/08/28 11:25:29 Done.
+ // matches for |observed_form_|.
+ ScopedVector<autofill::PasswordForm> psl_not_best_matches_;
+
// Set of blacklisted forms from the DB that best match the current form.
ScopedVector<autofill::PasswordForm> blacklisted_matches_;

Powered by Google App Engine
This is Rietveld 408576698