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

Unified Diff: third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp

Issue 2586863002: Worker: Enable UseCounter for SharedWorkerGlobalScope (Closed)
Patch Set: ready to review Created 3 years, 11 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: third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp b/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
index dd43f21e7c08ebb54618f63d4adb24b6bc48f2b4..35c3fefced7e6f9418c08aabd6737f34f7720bc8 100644
--- a/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
+++ b/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
@@ -96,6 +96,13 @@ class SharedWorkerConnectListener final
void connected() override { m_worker->setIsBeingConnected(false); }
+ void countFeature(uint32_t feature) override {
+ static_assert(UseCounter::NumberOfFeatures < UINT32_MAX,
+ "uint32_t must be larger than number of features");
+ UseCounter::count(m_worker->getExecutionContext(),
+ static_cast<UseCounter::Feature>(feature));
+ }
+
Persistent<SharedWorker> m_worker;
};

Powered by Google App Engine
This is Rietveld 408576698