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

Unified Diff: third_party/WebKit/Source/web/WebSharedWorkerImpl.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/web/WebSharedWorkerImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
index 7149baf32100444959434686e0811524339977c7..dee2b9c546dee4babfc0fadea9d4ee8fc6a19cc4 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
@@ -224,6 +224,18 @@ WebSharedWorkerImpl::createClientMessageLoop() {
// WorkerReportingProxy --------------------------------------------------------
+void WebSharedWorkerImpl::countFeature(UseCounter::Feature) {
+ // TODO(nhiroki): Support UseCounter for SharedWorker. Send an IPC message to
+ // the browser process and ask each connected document to record API use in
+ // its UseCounter (https://crbug.com/376039).
+}
+
+void WebSharedWorkerImpl::countDeprecation(UseCounter::Feature) {
+ // TODO(nhiroki): Support UseCounter for SharedWorker. Send an IPC message to
+ // the browser process and ask each connected document to record API use in
+ // its UseCounter (https://crbug.com/376039).
+}
+
void WebSharedWorkerImpl::reportException(const String& errorMessage,
std::unique_ptr<SourceLocation>,
int exceptionId) {

Powered by Google App Engine
This is Rietveld 408576698