Chromium Code Reviews| Index: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp |
| diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp |
| index 7f6f81b1b9e1f8e90603e49de0dae8c32a3632d1..3a148265d473ff4f7566f8e521072197b4d4f13c 100644 |
| --- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp |
| +++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp |
| @@ -333,6 +333,16 @@ bool ServiceWorkerGlobalScopeProxy::hasFetchEventHandler() { |
| return m_workerGlobalScope->hasEventListeners(EventTypeNames::fetch); |
| } |
| +void ServiceWorkerGlobalScopeProxy::countFeature(UseCounter::Feature) { |
| + // TODO(nhiroki): Support UseCounter for ServiceWorker. |
| + // (https://crbug.com/376039) |
|
falken
2016/12/02 08:54:49
NOTIMPLEMENTED?
nhiroki
2016/12/05 04:49:01
This is reachable.
|
| +} |
| + |
| +void ServiceWorkerGlobalScopeProxy::countDeprecation(UseCounter::Feature) { |
| + // TODO(nhiroki): Support UseCounter for ServiceWorker. |
| + // (https://crbug.com/376039) |
| +} |
| + |
| void ServiceWorkerGlobalScopeProxy::reportException( |
| const String& errorMessage, |
| std::unique_ptr<SourceLocation> location, |