| 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 d80f521cdf6a98468b66b9cfe267ba9120f6cf2b..ad411c7d2da5a4571990d2d275465f63b1275b58 100644
|
| --- a/components/offline_pages/background/request_coordinator.h
|
| +++ b/components/offline_pages/background/request_coordinator.h
|
| @@ -78,14 +78,12 @@ class RequestCoordinator : public KeyedService,
|
| RemoveRequestsCallback;
|
|
|
| // Remove a list of requests by |request_id|. This removes requests from the
|
| - // request queue, but does not cancel an in-progress pre-render.
|
| - // TODO(petewil): Add code to cancel an in-progress pre-render.
|
| + // request queue, and cancels an in-progress prerender.
|
| void RemoveRequests(const std::vector<int64_t>& request_ids,
|
| const RemoveRequestsCallback& callback);
|
|
|
| // Pause a list of requests by |request_id|. This will change the state
|
| // in the request queue so the request cannot be started.
|
| - // TODO(petewil): Add code to cancel an in-progress pre-render.
|
| void PauseRequests(const std::vector<int64_t>& request_ids);
|
|
|
| // Resume a list of previously paused requests, making them available.
|
|
|