| Index: chrome/browser/password_manager/password_store_mac_unittest.cc
|
| diff --git a/chrome/browser/password_manager/password_store_mac_unittest.cc b/chrome/browser/password_manager/password_store_mac_unittest.cc
|
| index 5107a3d1c2f9da989a53ff76ee0697f37939e2ae..4dcef68a0607bc3d65584f4cf95cce970176939b 100644
|
| --- a/chrome/browser/password_manager/password_store_mac_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_mac_unittest.cc
|
| @@ -42,7 +42,7 @@ ACTION(STLDeleteElements0) {
|
|
|
| ACTION(QuitUIMessageLoop) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - MessageLoop::current()->Quit();
|
| + base::MessageLoop::current()->Quit();
|
| }
|
|
|
| } // namespace
|
| @@ -916,12 +916,13 @@ class PasswordStoreMacTest : public testing::Test {
|
|
|
| virtual void TearDown() {
|
| store_->ShutdownOnUIThread();
|
| - MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure());
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->PostTask(FROM_HERE,
|
| + base::MessageLoop::QuitClosure());
|
| + base::MessageLoop::current()->Run();
|
| }
|
|
|
| protected:
|
| - MessageLoopForUI message_loop_;
|
| + base::MessageLoopForUI message_loop_;
|
| content::TestBrowserThread ui_thread_;
|
|
|
| MockAppleKeychain* keychain_; // Owned by store_.
|
| @@ -1002,7 +1003,7 @@ TEST_F(PasswordStoreMacTest, TestStoreUpdate) {
|
| EXPECT_CALL(consumer, OnGetPasswordStoreResults(_)).WillOnce(
|
| DoAll(WithArg<0>(STLDeleteElements0()), QuitUIMessageLoop()));
|
| store_->GetLogins(*joint_form, &consumer);
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->Run();
|
|
|
| MacKeychainPasswordFormAdapter keychain_adapter(keychain_);
|
| for (unsigned int i = 0; i < ARRAYSIZE_UNSAFE(updates); ++i) {
|
|
|