Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: components/offline_pages/background/request_coordinator.cc

Issue 2197573003: Provide API in RequestCoordinator to remove results by client ID. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment change (TODO) Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
index 5876d8386d79b7c3834f6cf9b7d72bd22f8c38cd..958b8d1dbcd891f9fc23141e1aa3c8f16f3e2e1e 100644
--- a/components/offline_pages/background/request_coordinator.cc
+++ b/components/offline_pages/background/request_coordinator.cc
@@ -70,6 +70,15 @@ bool RequestCoordinator::SavePageLater(
return true;
}
+void RequestCoordinator::RemoveRequests(
+ const std::vector<ClientId>& client_ids) {
+
fgorski 2016/08/02 05:01:22 nit: remove empty line.
Pete Williamson 2016/08/02 23:27:16 Done.
+ queue_->RemoveRequestsByClientId(
+ client_ids,
+ base::Bind(&RequestCoordinator::UpdateRequestCallback,
+ weak_ptr_factory_.GetWeakPtr()));
+}
+
void RequestCoordinator::AddRequestResultCallback(
RequestQueue::AddRequestResult result,
const SavePageRequest& request) {

Powered by Google App Engine
This is Rietveld 408576698