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

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

Issue 2658603003: ServiceWorker: Enable UseCounter for ServiceWorkerGlobalScope (Closed)
Patch Set: int32_t -> uint32_t Created 3 years, 10 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: content/child/service_worker/service_worker_message_filter.h
diff --git a/content/child/service_worker/service_worker_message_filter.h b/content/child/service_worker/service_worker_message_filter.h
index b9785d579c17c556b9a438835b69bb846b0f0247..de0b266f0ec31354271aded5434e55aa67487b4a 100644
--- a/content/child/service_worker/service_worker_message_filter.h
+++ b/content/child/service_worker/service_worker_message_filter.h
@@ -5,6 +5,7 @@
#ifndef CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_MESSAGE_FILTER_H_
#define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_MESSAGE_FILTER_H_
+#include <set>
#include <vector>
#include "base/macros.h"
@@ -61,7 +62,8 @@ class CONTENT_EXPORT ServiceWorkerMessageFilter
int thread_id,
int provider_id,
const ServiceWorkerObjectInfo& info,
- bool should_notify_controllerchange);
+ bool should_notify_controllerchange,
+ const std::set<uint32_t>& used_features);
void OnStaleMessageToDocument(
const ServiceWorkerMsg_MessageToDocument_Params& params);

Powered by Google App Engine
This is Rietveld 408576698