| Index: chrome/browser/password_manager/test_password_store.cc
|
| diff --git a/chrome/browser/password_manager/test_password_store.cc b/chrome/browser/password_manager/test_password_store.cc
|
| index eb3ee1dd50c98eae94ceab3b8c2b81ae993e8e59..d5fe8189d7c9a54b6eea24933a5c85c4cec05bc1 100644
|
| --- a/chrome/browser/password_manager/test_password_store.cc
|
| +++ b/chrome/browser/password_manager/test_password_store.cc
|
| @@ -12,7 +12,11 @@ scoped_refptr<RefcountedBrowserContextKeyedService> TestPasswordStore::Create(
|
| return make_scoped_refptr(new TestPasswordStore);
|
| }
|
|
|
| -TestPasswordStore::TestPasswordStore() : PasswordStore() {}
|
| +TestPasswordStore::TestPasswordStore()
|
| + : PasswordStore(base::MessageLoopProxy::current(),
|
| + base::MessageLoopProxy::current()) {
|
| +}
|
| +
|
| TestPasswordStore::~TestPasswordStore() {}
|
|
|
| TestPasswordStore::PasswordMap TestPasswordStore::stored_passwords() {
|
| @@ -32,10 +36,6 @@ bool TestPasswordStore::FormsAreEquivalent(const autofill::PasswordForm& lhs,
|
| lhs.signon_realm == rhs.signon_realm;
|
| }
|
|
|
| -scoped_refptr<base::SequencedTaskRunner> TestPasswordStore::GetTaskRunner() {
|
| - return base::MessageLoopProxy::current();
|
| -}
|
| -
|
| void TestPasswordStore::WrapModificationTask(base::Closure task) {
|
| task.Run();
|
| }
|
|
|