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

Unified Diff: chrome/browser/password_manager/password_store_x.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: chrome/browser/password_manager/password_store_x.h
diff --git a/chrome/browser/password_manager/password_store_x.h b/chrome/browser/password_manager/password_store_x.h
index f6851bc79764893b154463fb6630edf85d39b2ea..e1b6f16b755a7545a2a4cf095b72f17a3eddae49 100644
--- a/chrome/browser/password_manager/password_store_x.h
+++ b/chrome/browser/password_manager/password_store_x.h
@@ -78,7 +78,7 @@ class PasswordStoreX : public password_manager::PasswordStoreDefault {
// The three methods below overwrite |forms| with all stored credentials
// matching |form|, all stored non-blacklisted credentials, and all stored
// blacklisted credentials, respectively. On success, they return true.
- virtual bool GetLogins(const autofill::PasswordForm& form,
+ virtual bool GetLogins(const FormDigest& form,
ScopedVector<autofill::PasswordForm>* forms)
WARN_UNUSED_RESULT = 0;
virtual bool GetAutofillableLogins(
@@ -121,7 +121,7 @@ class PasswordStoreX : public password_manager::PasswordStoreDefault {
password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl(
const base::Callback<bool(const GURL&)>& origin_filter) override;
ScopedVector<autofill::PasswordForm> FillMatchingLogins(
- const autofill::PasswordForm& form) override;
+ const FormDigest& form) override;
bool FillAutofillableLogins(
ScopedVector<autofill::PasswordForm>* forms) override;
bool FillBlacklistLogins(
« no previous file with comments | « chrome/browser/password_manager/password_store_win_unittest.cc ('k') | chrome/browser/password_manager/password_store_x.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698