| Index: chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
 | 
| diff --git a/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc b/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
 | 
| index 11af55a676b0f9b92cc7a87d1764c582f7e89706..0da3455b03ccda0c6298f138acd5bc4ba8aa9a49 100644
 | 
| --- a/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
 | 
| +++ b/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
 | 
| @@ -212,7 +212,7 @@ class NativeBackendKWalletTest : public NativeBackendKWalletTestBase {
 | 
|    void CheckPasswordForms(const std::string& folder,
 | 
|                            const ExpectationArray& sorted_expected);
 | 
|  
 | 
| -  MessageLoopForUI message_loop_;
 | 
| +  base::MessageLoopForUI message_loop_;
 | 
|    content::TestBrowserThread ui_thread_;
 | 
|    content::TestBrowserThread db_thread_;
 | 
|    TestingProfile profile_;
 | 
| @@ -278,8 +278,9 @@ void NativeBackendKWalletTest::SetUp() {
 | 
|  }
 | 
|  
 | 
|  void NativeBackendKWalletTest::TearDown() {
 | 
| -  MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure());
 | 
| -  MessageLoop::current()->Run();
 | 
| +  base::MessageLoop::current()->PostTask(FROM_HERE,
 | 
| +                                         base::MessageLoop::QuitClosure());
 | 
| +  base::MessageLoop::current()->Run();
 | 
|    db_thread_.Stop();
 | 
|  }
 | 
|  
 | 
| 
 |