| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/password_manager/core/browser/test_password_store.h" | 5 #include "components/password_manager/core/browser/test_password_store.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/thread_task_runner_handle.h" | 9 #include "base/thread_task_runner_handle.h" |
| 8 #include "components/autofill/core/common/password_form.h" | 10 #include "components/autofill/core/common/password_form.h" |
| 9 #include "components/password_manager/core/browser/statistics_table.h" | 11 #include "components/password_manager/core/browser/statistics_table.h" |
| 10 | 12 |
| 11 namespace password_manager { | 13 namespace password_manager { |
| 12 | 14 |
| 13 TestPasswordStore::TestPasswordStore() | 15 TestPasswordStore::TestPasswordStore() |
| 14 : PasswordStore(base::ThreadTaskRunnerHandle::Get(), | 16 : PasswordStore(base::ThreadTaskRunnerHandle::Get(), |
| 15 base::ThreadTaskRunnerHandle::Get()) { | 17 base::ThreadTaskRunnerHandle::Get()) { |
| 16 } | 18 } |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 135 |
| 134 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) { | 136 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) { |
| 135 } | 137 } |
| 136 | 138 |
| 137 std::vector<scoped_ptr<InteractionsStats>> TestPasswordStore::GetSiteStatsImpl( | 139 std::vector<scoped_ptr<InteractionsStats>> TestPasswordStore::GetSiteStatsImpl( |
| 138 const GURL& origin_domain) { | 140 const GURL& origin_domain) { |
| 139 return std::vector<scoped_ptr<InteractionsStats>>(); | 141 return std::vector<scoped_ptr<InteractionsStats>>(); |
| 140 } | 142 } |
| 141 | 143 |
| 142 } // namespace password_manager | 144 } // namespace password_manager |
| OLD | NEW |