Chromium Code Reviews

Unified Diff: content/child/service_worker/service_worker_message_filter.cc

Issue 2658603003: ServiceWorker: Enable UseCounter for ServiceWorkerGlobalScope (Closed)
Patch Set: add nullptr check for fixing test failures Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: content/child/service_worker/service_worker_message_filter.cc
diff --git a/content/child/service_worker/service_worker_message_filter.cc b/content/child/service_worker/service_worker_message_filter.cc
index d73d4c44f4c7fe92a695c4dad0507ac03074a366..47d7787be9e9bdb3777bffd0191a3d171a1352f5 100644
--- a/content/child/service_worker/service_worker_message_filter.cc
+++ b/content/child/service_worker/service_worker_message_filter.cc
@@ -143,7 +143,8 @@ void ServiceWorkerMessageFilter::OnStaleSetControllerServiceWorker(
int thread_id,
int provider_id,
const ServiceWorkerObjectInfo& info,
- bool should_notify_controllerchange) {
+ bool should_notify_controllerchange,
+ const std::set<uint32_t>& used_features) {
SendServiceWorkerObjectDestroyed(thread_safe_sender(), info.handle_id);
}

Powered by Google App Engine