OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ |
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <unordered_map> | 11 #include <unordered_map> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "components/password_manager/core/browser/affiliation_fetch_throttler_d
elegate.h" | 18 #include "components/password_manager/core/browser/affiliation_fetch_throttler_d
elegate.h" |
19 #include "components/password_manager/core/browser/affiliation_fetcher_delegate.
h" | 19 #include "components/password_manager/core/browser/affiliation_fetcher_delegate.
h" |
20 #include "components/password_manager/core/browser/affiliation_service.h" | 20 #include "components/password_manager/core/browser/affiliation_service.h" |
21 #include "components/password_manager/core/browser/affiliation_utils.h" | 21 #include "components/password_manager/core/browser/affiliation_utils.h" |
22 #include "components/password_manager/core/browser/facet_manager_host.h" | 22 #include "components/password_manager/core/browser/facet_manager_host.h" |
23 | 23 |
24 namespace base { | 24 namespace base { |
25 class Clock; | 25 class Clock; |
26 class FilePath; | 26 class FilePath; |
27 class SingleThreadTaskRunner; | 27 class SingleThreadTaskRunner; |
| 28 class TaskRunner; |
28 class ThreadChecker; | 29 class ThreadChecker; |
29 class TickClock; | 30 class TickClock; |
30 class Time; | 31 class Time; |
31 } // namespace base | 32 } // namespace base |
32 | 33 |
33 namespace net { | 34 namespace net { |
34 class URLRequestContextGetter; | 35 class URLRequestContextGetter; |
35 } // namespace net | 36 } // namespace net |
36 | 37 |
37 namespace password_manager { | 38 namespace password_manager { |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 facet_managers_; | 158 facet_managers_; |
158 | 159 |
159 base::WeakPtrFactory<AffiliationBackend> weak_ptr_factory_; | 160 base::WeakPtrFactory<AffiliationBackend> weak_ptr_factory_; |
160 | 161 |
161 DISALLOW_COPY_AND_ASSIGN(AffiliationBackend); | 162 DISALLOW_COPY_AND_ASSIGN(AffiliationBackend); |
162 }; | 163 }; |
163 | 164 |
164 } // namespace password_manager | 165 } // namespace password_manager |
165 | 166 |
166 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ | 167 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ |
OLD | NEW |