Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_H_ | |
| 6 #define COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_H_ | |
| 7 | |
| 8 #include "components/keyed_service/core/keyed_service.h" | |
| 9 #include "components/offline_pages/core/offline_page_item.h" | |
| 10 | |
| 11 class GURL; | |
| 12 | |
| 13 namespace offline_pages { | |
| 14 | |
| 15 // Main class for the Offline Pages Prefetching feature, which will ask a server | |
| 16 // to package content from interesting URLs and send it to Chrome for | |
| 17 // consumption while offline. | |
| 18 class PrefetchService : public KeyedService { | |
| 19 public: | |
| 20 struct PrefetchURL { | |
| 21 // Used to differentiate URLs from different sources. |name_space| should | |
| 22 // be unique per source. |id| can be anything useful to identify the page, | |
| 23 // but will not be used for deduplication. | |
| 24 ClientId client_id; | |
| 25 | |
| 26 // This URL will be prefetched by the service. | |
| 27 GURL url; | |
| 28 }; | |
| 29 | |
| 30 ~PrefetchService() override = default; | |
| 31 | |
| 32 // Called when a consumer has new URLs for the system to prefetch. | |
|
carlosk
2017/04/18 00:36:09
nit: s/has new/has potentially new/ ?
I'm not real
dewittj
2017/04/18 18:20:25
Done.
| |
| 33 virtual void OnNewURLsToPrefetch( | |
|
jianli
2017/04/17 21:52:58
Can we rename this to something like PrefetchURLs
dewittj
2017/04/17 22:22:18
Done.
| |
| 34 const std::vector<PrefetchURL>& prefetch_urls) = 0; | |
| 35 | |
| 36 // Called when all existing suggestions are no longer considered valid for a | |
| 37 // given namespace. The prefetch service should remove any URLs that | |
| 38 // have not yet started downloading within that namespace. | |
|
carlosk
2017/04/18 00:36:09
IRT "have not yet started downloading": why not de
dewittj
2017/04/18 18:20:25
I recall we want to treat pages that have started
carlosk
2017/04/18 20:17:22
Acknowledged.
| |
| 39 virtual void RemoveAllUnprocessedPrefetchURLs( | |
| 40 const std::string& name_space) = 0; | |
| 41 | |
| 42 // Called to invalidate a single PrefetchURL entry identified by |client_id|. | |
| 43 // If multiple have the same |client_id|, they will all be removed. | |
| 44 virtual void RemovePrefetchURLsByClientId(const ClientId& client_id) = 0; | |
| 45 }; | |
| 46 | |
| 47 } // namespace offline_pages | |
| 48 | |
| 49 #endif // COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_SERVICE_IMPL_H_ | |
| OLD | NEW |