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

Unified Diff: chrome/browser/password_manager/password_store_unittest.cc

Issue 106053008: [Mac] Passwords: Don't always prompt to access passwords saved by other browsers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix yet another compile failure. Created 7 years 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_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_unittest.cc b/chrome/browser/password_manager/password_store_unittest.cc
index 0face7aeefe7d242602c8564e1c350b7e7cf5da1..362ec121982be7faaae1671031bf5dfd703a41eb 100644
--- a/chrome/browser/password_manager/password_store_unittest.cc
+++ b/chrome/browser/password_manager/password_store_unittest.cc
@@ -259,9 +259,9 @@ TEST_F(PasswordStoreTest, IgnoreOldWwwGoogleLogins) {
ContainsAllPasswordForms(www_google_expected)))
.WillOnce(WithArg<0>(STLDeleteElements0())).RetiresOnSaturation();
- store->GetLogins(www_google, &consumer);
- store->GetLogins(accounts_google, &consumer);
- store->GetLogins(bar_example, &consumer);
+ store->GetLogins(www_google, PasswordStore::ALLOW_PROMPT, &consumer);
+ store->GetLogins(accounts_google, PasswordStore::ALLOW_PROMPT, &consumer);
+ store->GetLogins(bar_example, PasswordStore::ALLOW_PROMPT, &consumer);
base::MessageLoop::current()->Run();
« no previous file with comments | « chrome/browser/password_manager/password_store_mac_unittest.cc ('k') | chrome/browser/password_manager/password_store_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698