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

Unified Diff: third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.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/ThreadedWorkletObjectProxy.cpp
diff --git a/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp b/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp
index 72a392bf68b6a546d000c1fe676cf0f15d889c14..3db954f0b94e6aede9c917a0acacbca81ec6e109 100644
--- a/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp
+++ b/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp
@@ -26,6 +26,18 @@ ThreadedWorkletObjectProxy::~ThreadedWorkletObjectProxy() {
DCHECK(m_messagingProxyWeakPtr);
}
+void ThreadedWorkletObjectProxy::countFeature(UseCounter::Feature) {
+ // TODO(nhiroki): Support UseCounter for ThreadedWorklets. We could do the
+ // same thing with InProcessWorkerObjectProxy here.
+ // (https://crbug.com/376039)
+}
+
+void ThreadedWorkletObjectProxy::countDeprecation(UseCounter::Feature) {
+ // TODO(nhiroki): Support UseCounter for ThreadedWorklets. We could do the
+ // same thing with InProcessWorkerObjectProxy here.
+ // (https://crbug.com/376039)
+}
+
void ThreadedWorkletObjectProxy::reportConsoleMessage(
MessageSource source,
MessageLevel level,

Powered by Google App Engine
This is Rietveld 408576698