| Index: chrome/browser/password_manager/password_store_win_unittest.cc
 | 
| diff --git a/chrome/browser/password_manager/password_store_win_unittest.cc b/chrome/browser/password_manager/password_store_win_unittest.cc
 | 
| index f46823f6696e3c5e0fc74576f4f529ff9499cb59..c1c7ecba434f823528ac96d62b6d51cf25de79ac 100644
 | 
| --- a/chrome/browser/password_manager/password_store_win_unittest.cc
 | 
| +++ b/chrome/browser/password_manager/password_store_win_unittest.cc
 | 
| @@ -15,6 +15,7 @@
 | 
|  #include "base/prefs/pref_service.h"
 | 
|  #include "base/stl_util.h"
 | 
|  #include "base/synchronization/waitable_event.h"
 | 
| +#include "base/thread_task_runner_handle.h"
 | 
|  #include "base/time/time.h"
 | 
|  #include "chrome/browser/password_manager/password_store_win.h"
 | 
|  #include "chrome/test/base/testing_profile.h"
 | 
| @@ -157,7 +158,7 @@ class PasswordStoreWinTest : public testing::Test {
 | 
|  
 | 
|    PasswordStoreWin* CreatePasswordStore() {
 | 
|      return new PasswordStoreWin(
 | 
| -        base::MessageLoopProxy::current(),
 | 
| +        base::ThreadTaskRunnerHandle::Get(),
 | 
|          BrowserThread::GetMessageLoopProxyForThread(BrowserThread::DB),
 | 
|          make_scoped_ptr(new LoginDatabase(test_login_db_file_path())),
 | 
|          wds_.get());
 | 
| 
 |