OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ |
6 #define COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "components/offline_pages/core/prefetch/prefetch_service.h" | 11 #include "components/offline_pages/core/prefetch/prefetch_service.h" |
12 | 12 |
13 namespace offline_pages { | 13 namespace offline_pages { |
| 14 class PrefetchStore; |
14 | 15 |
15 class PrefetchServiceImpl : public PrefetchService { | 16 class PrefetchServiceImpl : public PrefetchService { |
16 public: | 17 public: |
17 PrefetchServiceImpl(); | 18 PrefetchServiceImpl(std::unique_ptr<PrefetchStore> store); |
18 ~PrefetchServiceImpl() override; | 19 ~PrefetchServiceImpl() override; |
19 | 20 |
20 // PrefetchService implementation: | 21 // PrefetchService implementation: |
21 PrefetchDispatcher* GetDispatcher() override; | 22 PrefetchDispatcher* GetDispatcher() override; |
22 | 23 |
23 // KeyedService implementation: | 24 // KeyedService implementation: |
24 void Shutdown() override; | 25 void Shutdown() override; |
25 | 26 |
26 private: | 27 private: |
27 std::unique_ptr<PrefetchDispatcher> dispatcher_; | 28 std::unique_ptr<PrefetchDispatcher> dispatcher_; |
28 | 29 |
29 DISALLOW_COPY_AND_ASSIGN(PrefetchServiceImpl); | 30 DISALLOW_COPY_AND_ASSIGN(PrefetchServiceImpl); |
30 }; | 31 }; |
31 | 32 |
32 } // namespace offline_pages | 33 } // namespace offline_pages |
33 | 34 |
34 #endif // COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ | 35 #endif // COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ |
OLD | NEW |