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

Unified Diff: chrome/browser/sync/test/integration/passwords_helper.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/sync/test/integration/passwords_helper.cc
diff --git a/chrome/browser/sync/test/integration/passwords_helper.cc b/chrome/browser/sync/test/integration/passwords_helper.cc
index 64fb1d9dcfcbcf267461e3e098e61c7e6de0b04f..61d3c73d8d49e6add8fac3cdac05a154dc7e8414 100644
--- a/chrome/browser/sync/test/integration/passwords_helper.cc
+++ b/chrome/browser/sync/test/integration/passwords_helper.cc
@@ -95,8 +95,8 @@ void UpdateLogin(PasswordStore* store, const PasswordForm& form) {
ScopedVector<PasswordForm> GetLogins(PasswordStore* store) {
EXPECT_TRUE(store);
- PasswordForm matcher_form;
- matcher_form.signon_realm = kFakeSignonRealm;
+ password_manager::PasswordStore::FormDigest matcher_form = {
+ PasswordForm::SCHEME_HTML, kFakeSignonRealm, GURL()};
PasswordStoreConsumerHelper consumer;
store->GetLogins(matcher_form, &consumer);
content::RunMessageLoop();

Powered by Google App Engine
This is Rietveld 408576698