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

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

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/login_database.h
diff --git a/components/password_manager/core/browser/login_database.h b/components/password_manager/core/browser/login_database.h
index c6bc208632306b44bf25fcc694206b2a270624a1..71f940d826d482b8db43aa81b7613d466b0479d2 100644
--- a/components/password_manager/core/browser/login_database.h
+++ b/components/password_manager/core/browser/login_database.h
@@ -87,7 +87,7 @@ class LoginDatabase {
// Gets a list of credentials matching |form|, including blacklisted matches
// and federated credentials.
- bool GetLogins(const autofill::PasswordForm& form,
+ bool GetLogins(const PasswordStore::FormDigest& form,
ScopedVector<autofill::PasswordForm>* forms) const
WARN_UNUSED_RESULT;
@@ -191,7 +191,7 @@ class LoginDatabase {
// |matched_form| is not null, filters out all results but those PSL-matching
// |*matched_form| or federated credentials for it. On success returns true.
static bool StatementToForms(sql::Statement* statement,
- const autofill::PasswordForm* matched_form,
+ const PasswordStore::FormDigest* matched_form,
ScopedVector<autofill::PasswordForm>* forms);
// Initializes all the *_statement_ data members with appropriate SQL

Powered by Google App Engine
This is Rietveld 408576698