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..a26296013cc89481b5cd86edb3fc938f58977b03 100644 |
--- a/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp |
@@ -96,6 +96,11 @@ class SharedWorkerConnectListener final |
void connected() override { m_worker->setIsBeingConnected(false); } |
+ void countFeature(uint32_t feature) override { |
+ UseCounter::count(m_worker->getExecutionContext(), |
+ static_cast<UseCounter::Feature>(feature)); |
+ } |
+ |
Persistent<SharedWorker> m_worker; |
}; |