| Index: chrome/browser/history/shortcuts_backend_unittest.cc
|
| diff --git a/chrome/browser/history/shortcuts_backend_unittest.cc b/chrome/browser/history/shortcuts_backend_unittest.cc
|
| index 7cf24c4552d70977738712696b48bd4f89416695..df35d9a690a47040aaf5b7e6d347b7c82c1526e4 100644
|
| --- a/chrome/browser/history/shortcuts_backend_unittest.cc
|
| +++ b/chrome/browser/history/shortcuts_backend_unittest.cc
|
| @@ -43,7 +43,7 @@ class ShortcutsBackendTest : public testing::Test,
|
|
|
| TestingProfile profile_;
|
| scoped_refptr<ShortcutsBackend> backend_;
|
| - MessageLoopForUI ui_message_loop_;
|
| + base::MessageLoopForUI ui_message_loop_;
|
| content::TestBrowserThread ui_thread_;
|
| content::TestBrowserThread db_thread_;
|
|
|
| @@ -67,7 +67,7 @@ void ShortcutsBackendTest::TearDown() {
|
|
|
| void ShortcutsBackendTest::OnShortcutsLoaded() {
|
| load_notified_ = true;
|
| - MessageLoop::current()->Quit();
|
| + base::MessageLoop::current()->Quit();
|
| }
|
|
|
| void ShortcutsBackendTest::OnShortcutsChanged() {
|
| @@ -79,7 +79,7 @@ void ShortcutsBackendTest::InitBackend() {
|
| ASSERT_TRUE(backend);
|
| ASSERT_FALSE(load_notified_);
|
| ASSERT_FALSE(backend_->initialized());
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->Run();
|
| EXPECT_TRUE(load_notified_);
|
| EXPECT_TRUE(backend_->initialized());
|
| }
|
|
|