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

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

Issue 2133953002: PasswordForm -> FormDigest for GetLogins (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@413020_ssl_valid
Patch Set: Nits addressed Created 4 years, 5 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_store_default.cc
diff --git a/components/password_manager/core/browser/password_store_default.cc b/components/password_manager/core/browser/password_store_default.cc
index 1a7b647eb6ede6b6bc4c22a841f33777a0c0249a..3de79c88a2f68a636db7b1c4b731bd2973d473bb 100644
--- a/components/password_manager/core/browser/password_store_default.cc
+++ b/components/password_manager/core/browser/password_store_default.cc
@@ -172,7 +172,7 @@ bool PasswordStoreDefault::RemoveStatisticsCreatedBetweenImpl(
}
ScopedVector<autofill::PasswordForm> PasswordStoreDefault::FillMatchingLogins(
- const autofill::PasswordForm& form) {
+ const FormDigest& form) {
ScopedVector<autofill::PasswordForm> matched_forms;
if (login_db_ && !login_db_->GetLogins(form, &matched_forms))
return ScopedVector<autofill::PasswordForm>();

Powered by Google App Engine
This is Rietveld 408576698