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

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

Issue 9665007: Profile refactoring: Remove all PasswordStore code from the Profile interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win and Mac Created 8 years, 9 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_win_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_win_unittest.cc b/chrome/browser/password_manager/password_store_win_unittest.cc
index 9c35c1fbd130afdbb7d6bfe763f0b6eb1225287a..ca7b874a2da93efb09f4275e0553f6cf63baf412 100644
--- a/chrome/browser/password_manager/password_store_win_unittest.cc
+++ b/chrome/browser/password_manager/password_store_win_unittest.cc
@@ -119,7 +119,7 @@ class PasswordStoreWinTest : public testing::Test {
virtual void TearDown() {
if (store_.get())
- store_->Shutdown();
+ store_->ShutdownOnUIThread();
if (wds_.get())
wds_->Shutdown();
MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure());
@@ -260,7 +260,7 @@ TEST_F(PasswordStoreWinTest, DISABLED_OutstandingWDSQueries) {
store_->GetLogins(*form, &consumer);
// Release the PSW and the WDS before the query can return.
- store_->Shutdown();
+ store_->ShutdownOnUIThread();
store_ = NULL;
wds_->Shutdown();
wds_ = NULL;

Powered by Google App Engine
This is Rietveld 408576698