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_GCM_HANDLER_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_GCM_HANDLER_H_ |
| 7 |
| 8 namespace offline_pages { |
| 9 |
| 10 class PrefetchGCMHandler; |
| 11 |
| 12 // Main class and entry point for the Offline Pages Prefetching feature, that |
| 13 // controls the lifetime of all major subcomponents of the prefetching system. |
| 14 class PrefetchGCMHandler { |
| 15 public: |
| 16 PrefetchGCMHandler() = default; |
| 17 virtual ~PrefetchGCMHandler() = default; |
| 18 |
| 19 // TODO(dewittj): Add methods for acquiring an Instance ID token to this |
| 20 // interface. |
| 21 }; |
| 22 |
| 23 } // namespace offline_pages |
| 24 |
| 25 #endif // COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_GCM_HANDLER_H_ |
OLD | NEW |