Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: components/offline_pages/core/prefetch/prefetch_gcm_handler.h

Issue 2864293003: [Offline Pages] Add a GCMAppHandler for offline page prefetch. (Closed)
Patch Set: Fix windows compile. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698