| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "components/offline_pages/core/prefetch/prefetch_service.h" | 10 #include "components/offline_pages/core/prefetch/prefetch_service.h" |
| 11 #include "url/gurl.h" | 11 #include "url/gurl.h" |
| 12 | 12 |
| 13 namespace offline_pages { | 13 namespace offline_pages { |
| 14 | 14 |
| 15 class PrefetchServiceImpl : public PrefetchService { | 15 class PrefetchServiceImpl : public PrefetchService { |
| 16 public: | 16 public: |
| 17 PrefetchServiceImpl(); | 17 PrefetchServiceImpl(); |
| 18 ~PrefetchServiceImpl() override; | 18 ~PrefetchServiceImpl() override; |
| 19 | 19 |
| 20 // PrefetchService implementation: | 20 // PrefetchService implementation: |
| 21 void AddCandidatePrefetchURLs( | 21 void AddCandidatePrefetchURLs( |
| 22 const std::vector<PrefetchURL>& suggested_urls) override; | 22 const std::vector<PrefetchURL>& suggested_urls) override; |
| 23 void RemoveAllUnprocessedPrefetchURLs(const std::string& name_space) override; | 23 void RemoveAllUnprocessedPrefetchURLs(const std::string& name_space) override; |
| 24 void RemovePrefetchURLsByClientId(const ClientId& client_id) override; | 24 void RemovePrefetchURLsByClientId(const ClientId& client_id) override; |
| 25 void BeginBackgroundTask(std::unique_ptr<ScopedBackgroundTask> task) override; |
| 26 void StopBackgroundTask(ScopedBackgroundTask* task) override; |
| 25 | 27 |
| 26 // KeyedService implementation: | 28 // KeyedService implementation: |
| 27 void Shutdown() override; | 29 void Shutdown() override; |
| 28 | 30 |
| 29 private: | 31 private: |
| 30 DISALLOW_COPY_AND_ASSIGN(PrefetchServiceImpl); | 32 DISALLOW_COPY_AND_ASSIGN(PrefetchServiceImpl); |
| 31 }; | 33 }; |
| 32 | 34 |
| 33 } // namespace offline_pages | 35 } // namespace offline_pages |
| 34 | 36 |
| 35 #endif // COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ | 37 #endif // COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ |
| OLD | NEW |