Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: components/password_manager/core/browser/test_password_store.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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> 7 #include <stddef.h>
8 8
9 #include "base/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
10 #include "components/autofill/core/common/password_form.h" 10 #include "components/autofill/core/common/password_form.h"
11 #include "components/password_manager/core/browser/psl_matching_helper.h" 11 #include "components/password_manager/core/browser/psl_matching_helper.h"
12 #include "components/password_manager/core/browser/statistics_table.h" 12 #include "components/password_manager/core/browser/statistics_table.h"
13 13
14 namespace password_manager { 14 namespace password_manager {
15 15
16 TestPasswordStore::TestPasswordStore() 16 TestPasswordStore::TestPasswordStore()
17 : PasswordStore(base::ThreadTaskRunnerHandle::Get(), 17 : PasswordStore(base::ThreadTaskRunnerHandle::Get(),
18 base::ThreadTaskRunnerHandle::Get()) { 18 base::ThreadTaskRunnerHandle::Get()) {
19 } 19 }
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 155
156 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) { 156 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) {
157 } 157 }
158 158
159 std::vector<std::unique_ptr<InteractionsStats>> 159 std::vector<std::unique_ptr<InteractionsStats>>
160 TestPasswordStore::GetSiteStatsImpl(const GURL& origin_domain) { 160 TestPasswordStore::GetSiteStatsImpl(const GURL& origin_domain) {
161 return std::vector<std::unique_ptr<InteractionsStats>>(); 161 return std::vector<std::unique_ptr<InteractionsStats>>();
162 } 162 }
163 163
164 } // namespace password_manager 164 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698