| Index: components/offline_pages/background/request_coordinator.h
|
| diff --git a/components/offline_pages/background/request_coordinator.h b/components/offline_pages/background/request_coordinator.h
|
| index dddcca8d49568d62a029e441d1d5e19d92b83500..ffbb8570499257b13d5d6f8b66ab650d85d5e887 100644
|
| --- a/components/offline_pages/background/request_coordinator.h
|
| +++ b/components/offline_pages/background/request_coordinator.h
|
| @@ -11,6 +11,7 @@
|
| #include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "components/keyed_service/core/keyed_service.h"
|
| +#include "components/offline_pages/background/device_conditions.h"
|
| #include "components/offline_pages/background/offliner.h"
|
| #include "components/offline_pages/background/request_queue.h"
|
| #include "url/gurl.h"
|
| @@ -47,7 +48,8 @@ class RequestCoordinator : public KeyedService {
|
| // Starts processing of one or more queued save page later requests.
|
| // Returns whether processing was started and that caller should expect
|
| // a callback. If processing was already active, returns false.
|
| - bool StartProcessing(const base::Callback<void(bool)>& callback);
|
| + bool StartProcessing(const DeviceConditions& device_conditions,
|
| + const base::Callback<void(bool)>& callback);
|
|
|
| // Stops the current request processing if active. This is a way for
|
| // caller to abort processing; otherwise, processing will complete on
|
|
|