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

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

Issue 1897193002: Worker: Rename worker components to clarify what they work for (part 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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/WorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
index ee7ae4c7364d7cd980382194cbbd879bc1dcf528..ffbced6bc2c2225904e724cfbc8441d15e815c48 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
@@ -343,12 +343,14 @@ void WorkerGlobalScope::deregisterEventListener(V8AbstractEventListener* eventLi
void WorkerGlobalScope::countFeature(UseCounter::Feature) const
{
- // FIXME: How should we count features for shared/service workers?
+ // TODO(nhiroki): How should we count features for shared/service workers?
+ // (http://crbug.com/376039)
}
void WorkerGlobalScope::countDeprecation(UseCounter::Feature feature) const
{
- // FIXME: How should we count features for shared/service workers?
+ // TODO(nhiroki): How should we count features for shared/service workers?
+ // (http://crbug.com/376039)
ASSERT(isSharedWorkerGlobalScope() || isServiceWorkerGlobalScope() || isCompositorWorkerGlobalScope());
// For each deprecated feature, send console message at most once

Powered by Google App Engine
This is Rietveld 408576698