| Index: components/offline_pages/background/request_queue.cc
|
| diff --git a/components/offline_pages/background/request_queue.cc b/components/offline_pages/background/request_queue.cc
|
| index f3cae845b337e01f720fb779c92154c2ff89bd3b..25020d4c60b65465b38a1a6edefa34976e7994f9 100644
|
| --- a/components/offline_pages/background/request_queue.cc
|
| +++ b/components/offline_pages/background/request_queue.cc
|
| @@ -135,6 +135,13 @@ void RequestQueue::RemoveRequest(int64_t request_id,
|
| store_->RemoveRequests(request_ids, base::Bind(RemoveRequestDone, callback));
|
| }
|
|
|
| +void RequestQueue::RemoveRequestsByClientId(
|
| + const std::vector<ClientId>& client_ids,
|
| + const UpdateRequestCallback& callback) {
|
| + store_->RemoveRequestsByClientId(
|
| + client_ids, base::Bind(RemoveRequestDone, callback));
|
| +}
|
| +
|
| void RequestQueue::PurgeRequests(const PurgeRequestsCallback& callback) {}
|
|
|
| } // namespace offline_pages
|
|
|