| 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_;
|
|
|