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

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

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 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_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_unittest.cc b/chrome/browser/password_manager/password_store_unittest.cc
index 0c5f08306362521bbe083d4bf2c28e321f2604d6..5a32bcd12c08a797352855f722c57984d51f1c6e 100644
--- a/chrome/browser/password_manager/password_store_unittest.cc
+++ b/chrome/browser/password_manager/password_store_unittest.cc
@@ -106,11 +106,12 @@ class PasswordStoreTest : public testing::Test {
virtual void TearDown() {
db_thread_.Stop();
- MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure());
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->PostTask(FROM_HERE,
+ base::MessageLoop::QuitClosure());
+ base::MessageLoop::current()->Run();
}
- MessageLoopForUI message_loop_;
+ base::MessageLoopForUI message_loop_;
content::TestBrowserThread ui_thread_;
// PasswordStore schedules work on this thread.
content::TestBrowserThread db_thread_;
@@ -125,7 +126,7 @@ ACTION(STLDeleteElements0) {
ACTION(QuitUIMessageLoop) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
TEST_F(PasswordStoreTest, IgnoreOldWwwGoogleLogins) {
@@ -262,7 +263,7 @@ TEST_F(PasswordStoreTest, IgnoreOldWwwGoogleLogins) {
store->GetLogins(accounts_google, &consumer);
store->GetLogins(bar_example, &consumer);
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
STLDeleteElements(&all_forms);
}

Powered by Google App Engine
This is Rietveld 408576698