Chromium Code Reviews| Index: components/offline_pages/core/prefetch/prefetch_service.h |
| diff --git a/components/offline_pages/core/prefetch/prefetch_service.h b/components/offline_pages/core/prefetch/prefetch_service.h |
| index e8ceeccb3595533891dab2e6df81d3347cec09ee..3bd72373c0bcf53424ff59c34d46a0d2ee1195e6 100644 |
| --- a/components/offline_pages/core/prefetch/prefetch_service.h |
| +++ b/components/offline_pages/core/prefetch/prefetch_service.h |
| @@ -12,10 +12,10 @@ class ContentSuggestionsService; |
| } |
| namespace offline_pages { |
| - |
| class OfflineMetricsCollector; |
| class PrefetchDispatcher; |
| class PrefetchGCMHandler; |
| +class PrefetchStore; |
| // Main class and entry point for the Offline Pages Prefetching feature, that |
| // controls the lifetime of all major subcomponents of the prefetching system. |
| @@ -28,9 +28,10 @@ class PrefetchService : public KeyedService { |
| // The service manages lifetime, hookup and initialization of Prefetch |
| // system that consists of multiple specialized objects, all vended by this |
| // service. All pointers are raw and are always valid. |
| - virtual PrefetchDispatcher* GetDispatcher() = 0; |
| + virtual PrefetchDispatcher* GetPrefetchDispatcher() = 0; |
|
Dmitry Titov
2017/06/02 00:01:48
Lets alphabetize the order of these GetXYZ methods
carlosk
2017/06/02 01:59:57
Done.
|
| virtual OfflineMetricsCollector* GetOfflineMetricsCollector() = 0; |
| virtual PrefetchGCMHandler* GetPrefetchGCMHandler() = 0; |
| + virtual PrefetchStore* GetPrefetchStore() = 0; |
| // Called at construction of the ContentSuggestionsService to begin observing |
| // events related to incoming articles. |