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