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

Unified Diff: third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp

Issue 2535093003: Worker: Connect UseCounter to workers and worklets (Closed)
Patch Set: remove 'const' qualifiers Created 4 years 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/core/workers/DedicatedWorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
index 6eb4290a758ff32b6b38561f08ef3d31fde52914..61a8aee425f8b2aaa95a25ba0ea1577ea6359c06 100644
--- a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
@@ -98,16 +98,6 @@ void DedicatedWorkerGlobalScope::postMessage(
std::move(channels));
}
-void DedicatedWorkerGlobalScope::countFeature(
- UseCounter::Feature feature) const {
- workerObjectProxy().countFeature(feature);
-}
-
-void DedicatedWorkerGlobalScope::countDeprecation(
- UseCounter::Feature feature) const {
- workerObjectProxy().countDeprecation(feature);
-}
-
InProcessWorkerObjectProxy& DedicatedWorkerGlobalScope::workerObjectProxy()
const {
return static_cast<DedicatedWorkerThread*>(thread())->workerObjectProxy();

Powered by Google App Engine
This is Rietveld 408576698