| 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 23243856b64a01ab464134445c296261236c74f3..0a7ffda0b6527c9fa1aef0d5f1a0b28f00b2c8c1 100644
|
| --- a/chrome/browser/history/shortcuts_backend_unittest.cc
|
| +++ b/chrome/browser/history/shortcuts_backend_unittest.cc
|
| @@ -42,7 +42,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_;
|
|
|
| @@ -66,7 +66,7 @@ void ShortcutsBackendTest::TearDown() {
|
|
|
| void ShortcutsBackendTest::OnShortcutsLoaded() {
|
| load_notified_ = true;
|
| - MessageLoop::current()->Quit();
|
| + base::MessageLoop::current()->Quit();
|
| }
|
|
|
| void ShortcutsBackendTest::OnShortcutsChanged() {
|
| @@ -78,7 +78,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());
|
| }
|
|
|