| Index: components/offline_pages/background/request_coordinator.cc
|
| diff --git a/components/offline_pages/background/request_coordinator.cc b/components/offline_pages/background/request_coordinator.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1e4d25633666f742df462f8cb8cd67a28b347030
|
| --- /dev/null
|
| +++ b/components/offline_pages/background/request_coordinator.cc
|
| @@ -0,0 +1,32 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "components/offline_pages/background/request_coordinator.h"
|
| +
|
| +// TODO(fgorski): include file with SavePageRequest definition.
|
| +
|
| +namespace offline_pages {
|
| +
|
| +// TODO(dougarnett): How to inject Offliner factories and policy objects.
|
| +RequestCoordinator::RequestCoordinator() {
|
| + // Do setup as needed.
|
| +}
|
| +
|
| +RequestCoordinator::~RequestCoordinator() {
|
| + // Do cleanup as needed.
|
| +}
|
| +
|
| +bool RequestCoordinator::SavePageLater(const SavePageRequest& request) {
|
| + return true;
|
| +}
|
| +
|
| +bool RequestCoordinator::StartProcessing(
|
| + const ProcessingDoneCallback& callback) {
|
| + return false;
|
| +}
|
| +
|
| +void RequestCoordinator::StopProcessing() {
|
| +}
|
| +
|
| +} // namespace offline_pages
|
|
|