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

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

Issue 2535093003: Worker: Connect UseCounter to workers and worklets (Closed)
Patch Set: Created 4 years, 1 month 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 0167d8cd8018dc2a616d9ca8eb0d67bfad65a180..51ed4da2c24f544b2d759c8636c078f1901b695a 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
@@ -224,6 +224,16 @@ WebSharedWorkerImpl::createClientMessageLoop() {
// WorkerReportingProxy --------------------------------------------------------
+void WebSharedWorkerImpl::countFeature(UseCounter::Feature) {
+ // TODO(nhiroki): Support UseCounter for SharedWorker.
+ // (https://crbug.com/376039)
falken 2016/12/02 08:54:49 NOTIMPLEMENTED?
nhiroki 2016/12/05 04:49:01 This is reachable.
+}
+
+void WebSharedWorkerImpl::countDeprecation(UseCounter::Feature) {
+ // TODO(nhiroki): Support UseCounter for SharedWorker.
+ // (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