| Index: chrome/browser/password_manager/password_store_win_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/password_manager/password_store_win_unittest.cc (revision 241838)
|
| +++ chrome/browser/password_manager/password_store_win_unittest.cc (working copy)
|
| @@ -236,7 +236,7 @@
|
| OnGetPasswordStoreResults(ContainsAllPasswordForms(forms)))
|
| .WillOnce(QuitUIMessageLoop());
|
|
|
| - store_->GetLogins(*form, &consumer);
|
| + store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &consumer);
|
| base::MessageLoop::current()->Run();
|
|
|
| STLDeleteElements(&forms);
|
| @@ -263,7 +263,7 @@
|
| scoped_ptr<PasswordForm> form(CreatePasswordFormFromData(form_data));
|
|
|
| MockPasswordStoreConsumer consumer;
|
| - store_->GetLogins(*form, &consumer);
|
| + store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &consumer);
|
|
|
| // Release the PSW and the WDS before the query can return.
|
| store_->ShutdownOnUIThread();
|
| @@ -331,7 +331,7 @@
|
| OnGetPasswordStoreResults(ContainsAllPasswordForms(forms)))
|
| .WillOnce(QuitUIMessageLoop());
|
|
|
| - store_->GetLogins(*form, &password_consumer);
|
| + store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &password_consumer);
|
|
|
| MockWebDataServiceConsumer wds_consumer;
|
|
|
| @@ -381,7 +381,7 @@
|
| OnGetPasswordStoreResults(ContainsAllPasswordForms(expect_none)))
|
| .WillOnce(DoAll(WithArg<0>(STLDeleteElements0()), QuitUIMessageLoop()));
|
|
|
| - store_->GetLogins(*form, &consumer);
|
| + store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &consumer);
|
| base::MessageLoop::current()->Run();
|
| }
|
|
|
|
|