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

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: Created 7 years, 8 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 126c83064d32aca3697a065c3e20d3c1286cebdc..71e479e27c02e5c07a35b15b38ff68433c7d809f 100644
--- a/chrome/browser/chromeos/contacts/gdata_contacts_service_unittest.cc
+++ b/chrome/browser/chromeos/contacts/gdata_contacts_service_unittest.cc
@@ -151,7 +151,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().
@@ -159,7 +159,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
@@ -175,7 +175,7 @@ class GDataContactsServiceTest : public testing::Test {
return result.Pass();
}
- 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