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

Unified Diff: chrome/browser/chromeos/contacts/gdata_contacts_service_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/chromeos/contacts/gdata_contacts_service_unittest.cc
diff --git a/chrome/browser/chromeos/contacts/gdata_contacts_service_unittest.cc b/chrome/browser/chromeos/contacts/gdata_contacts_service_unittest.cc
index fbf88099b5dd18f208b0754c5f1bc90d9ea3ce4a..1be34fdbf97d6cea69ea22032b013c8c58cba692 100644
--- a/chrome/browser/chromeos/contacts/gdata_contacts_service_unittest.cc
+++ b/chrome/browser/chromeos/contacts/gdata_contacts_service_unittest.cc
@@ -150,7 +150,7 @@ class GDataContactsServiceTest : public testing::Test {
CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
download_was_successful_ = true;
downloaded_contacts_.swap(contacts);
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
// Handles failure for Download().
@@ -158,7 +158,7 @@ class GDataContactsServiceTest : public testing::Test {
CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
download_was_successful_ = false;
downloaded_contacts_.reset(new ScopedVector<contacts::Contact>());
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
// Handles a request for downloading a file. Reads a requested file and
@@ -174,7 +174,7 @@ class GDataContactsServiceTest : public testing::Test {
return result.PassAs<net::test_server::HttpResponse>();
}
- MessageLoopForUI message_loop_;
+ base::MessageLoopForUI message_loop_;
content::TestBrowserThread ui_thread_;
content::TestBrowserThread io_thread_;
scoped_ptr<TestingProfile> profile_;

Powered by Google App Engine
This is Rietveld 408576698