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

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

Issue 2074373003: No ScopedVector in PasswordFormManager::not_best_matches_ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 25c4f2bd1d4c37f05f9c1a988e20ef3a9cdddd7d..df509aa293e6e10a480a691a9ee729652353de64 100644
--- a/components/password_manager/core/browser/password_form_manager.h
+++ b/components/password_manager/core/browser/password_form_manager.h
@@ -486,7 +486,7 @@ class PasswordFormManager : public PasswordStoreConsumer {
// Set of forms from PasswordStore that correspond to the current site and
// that are not in |best_matches_|.
- ScopedVector<autofill::PasswordForm> not_best_matches_;
+ std::vector<std::unique_ptr<autofill::PasswordForm>> not_best_matches_;
// Federated credentials relevant to the observed form. They are neither
// filled not saved by this PasswordFormManager, so they are kept separately
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698