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

Side by Side Diff: components/offline_pages/background/prerenderer_offliner.cc

Issue 1929223002: Add skeletons for the factories to create the request coordinator and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Manual merge of changes in the base changelist. Created 4 years, 7 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 2016 The Chromium Authors. All rights reserved.
fgorski 2016/04/29 04:16:46 Again this file is not needed.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/offline_pages/background/prerenderer_offliner.h"
6
7 #include "components/offline_pages/background/offliner.h"
8
9 namespace offline_pages {
10
11 PrerendererOffliner::PrerendererOffliner(OfflinerPolicy* policy) {
12 policy_ = policy;
13 }
14
15 PrerendererOffliner::~PrerendererOffliner() {}
16
17 // Processes |request| to load and save an offline page.
18 // Returns whether the request was accepted or not.
19 bool PrerendererOffliner::LoadAndSave(
20 const SavePageRequest& request,
21 const CompletionCallback& callback) {
22 return true;
23 }
24
25 // Clears the currently processing request, if any.
26 void PrerendererOffliner::Cancel() {
27 }
28
29 } // namespace offline_pages
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698