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

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

Issue 152683002: Passwords: Remove references to BrowserThread from PasswordStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 10 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_mac_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_mac_unittest.cc b/chrome/browser/password_manager/password_store_mac_unittest.cc
index bb7eba68490c41df84d8ae9fcc414aa4797f7480..7f025ccb0d9366e8f344b6bfea5e79f14ce0be0c 100644
--- a/chrome/browser/password_manager/password_store_mac_unittest.cc
+++ b/chrome/browser/password_manager/password_store_mac_unittest.cc
@@ -1038,7 +1038,11 @@ class PasswordStoreMacTest : public testing::Test {
keychain_ = new MockAppleKeychain();
- store_ = new PasswordStoreMac(keychain_, login_db_);
+ store_ = new PasswordStoreMac(
+ base::MessageLoopProxy::current(),
+ base::MessageLoopProxy::current(),
+ keychain_,
+ login_db_);
ASSERT_TRUE(store_->Init());
}
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.cc ('k') | chrome/browser/password_manager/password_store_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698