| Index: chrome/browser/profiles/profile_shortcut_manager_unittest_win.cc
|
| diff --git a/chrome/browser/profiles/profile_shortcut_manager_unittest_win.cc b/chrome/browser/profiles/profile_shortcut_manager_unittest_win.cc
|
| index 9fec5b7426c2fb446fea1209da8b5323ff894fcc..f2eb0b239a104c4b2fb256e623b59779fd5b9809 100644
|
| --- a/chrome/browser/profiles/profile_shortcut_manager_unittest_win.cc
|
| +++ b/chrome/browser/profiles/profile_shortcut_manager_unittest_win.cc
|
| @@ -85,8 +85,9 @@ class ProfileShortcutManagerTest : public testing::Test {
|
| }
|
|
|
| void RunPendingTasks() {
|
| - MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure());
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->PostTask(FROM_HERE,
|
| + base::MessageLoop::QuitClosure());
|
| + base::MessageLoop::current()->Run();
|
| }
|
|
|
| void SetupDefaultProfileShortcut(const tracked_objects::Location& location) {
|
| @@ -270,7 +271,7 @@ class ProfileShortcutManagerTest : public testing::Test {
|
| return system_shortcuts_directory;
|
| }
|
|
|
| - MessageLoopForUI message_loop_;
|
| + base::MessageLoopForUI message_loop_;
|
| content::TestBrowserThread ui_thread_;
|
| content::TestBrowserThread file_thread_;
|
| scoped_ptr<TestingProfileManager> profile_manager_;
|
|
|