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

Unified Diff: chrome/browser/password_manager/password_store_x_unittest.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: chrome/browser/password_manager/password_store_x_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
index 56382b82a435d97df224e162eeaca1de87e7c146..19e3652395589f5e355dc43cc384f50337ce46fb 100644
--- a/chrome/browser/password_manager/password_store_x_unittest.cc
+++ b/chrome/browser/password_manager/password_store_x_unittest.cc
@@ -106,7 +106,7 @@ class FailingBackend : public PasswordStoreX::NativeBackend {
return forms;
}
- bool GetLogins(const PasswordForm& form,
+ bool GetLogins(const PasswordStore::FormDigest& form,
ScopedVector<autofill::PasswordForm>* forms) override {
*forms = CreateTrashForms();
return false;
@@ -198,7 +198,7 @@ class MockBackend : public PasswordStoreX::NativeBackend {
return true;
}
- bool GetLogins(const PasswordForm& form,
+ bool GetLogins(const PasswordStore::FormDigest& form,
ScopedVector<autofill::PasswordForm>* forms) override {
for (size_t i = 0; i < all_forms_.size(); ++i)
if (all_forms_[i].signon_realm == form.signon_realm)
« no previous file with comments | « chrome/browser/password_manager/password_store_x.cc ('k') | chrome/browser/sync/test/integration/passwords_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698