| 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
|
|
|