| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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 #include "components/offline_pages/background/request_coordinator.h" |
| 6 |
| 7 // TODO(fgorski): include file with SavePageRequest definition. |
| 8 |
| 9 namespace offline_pages { |
| 10 |
| 11 // TODO(dougarnett): How to inject Offliner factories and policy objects. |
| 12 RequestCoordinator::RequestCoordinator() { |
| 13 // Do setup as needed. |
| 14 } |
| 15 |
| 16 RequestCoordinator::~RequestCoordinator() { |
| 17 // Do cleanup as needed. |
| 18 } |
| 19 |
| 20 bool RequestCoordinator::SavePageLater(const SavePageRequest& request) { |
| 21 return true; |
| 22 } |
| 23 |
| 24 bool RequestCoordinator::StartProcessing( |
| 25 const ProcessingDoneCallback& callback) { |
| 26 return false; |
| 27 } |
| 28 |
| 29 void RequestCoordinator::StopProcessing() { |
| 30 } |
| 31 |
| 32 } // namespace offline_pages |
| OLD | NEW |