| 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();
|
|
|