| Index: chrome/browser/profiles/profile_manager_browsertest.cc
|
| diff --git a/chrome/browser/profiles/profile_manager_browsertest.cc b/chrome/browser/profiles/profile_manager_browsertest.cc
|
| index 4499aa8f01479fc3e570ee3933aafb0d7aac7d54..9cf447be72dafb061f91ce32d9d271ae6307997b 100644
|
| --- a/chrome/browser/profiles/profile_manager_browsertest.cc
|
| +++ b/chrome/browser/profiles/profile_manager_browsertest.cc
|
| @@ -23,7 +23,7 @@ namespace {
|
| void OnUnblockOnProfileCreation(Profile* profile,
|
| Profile::CreateStatus status) {
|
| if (status == Profile::CREATE_STATUS_INITIALIZED)
|
| - MessageLoop::current()->Quit();
|
| + base::MessageLoop::current()->Quit();
|
| }
|
|
|
| void ProfileCreationComplete(Profile* profile, Profile::CreateStatus status) {
|
| @@ -32,7 +32,7 @@ void ProfileCreationComplete(Profile* profile, Profile::CreateStatus status) {
|
| EXPECT_EQ(chrome::GetTotalBrowserCountForProfile(profile), 0U);
|
| EXPECT_EQ(chrome::GetTotalBrowserCount(), 1U);
|
| if (status == Profile::CREATE_STATUS_INITIALIZED)
|
| - MessageLoop::current()->Quit();
|
| + base::MessageLoop::current()->Quit();
|
| }
|
|
|
| class ProfileRemovalObserver : public ProfileInfoCacheObserver {
|
|
|