| Index: third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
|
| index c1961479be138ef4b3b5e217754556f1b9e86466..7a2741d6899d03fb537b56effeb0d68e300ea847 100644
|
| --- a/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
|
| @@ -66,8 +66,6 @@
|
| workerObjectProxy->confirmMessageFromWorkerObject(V8GCController::hasPendingActivity(globalScope->thread()->isolate(), scriptContext));
|
| }
|
|
|
| -static int s_liveMessagingProxyCount = 0;
|
| -
|
| } // namespace
|
|
|
| InProcessWorkerMessagingProxy::InProcessWorkerMessagingProxy(InProcessWorkerBase* workerObject, WorkerClients* workerClients)
|
| @@ -83,7 +81,6 @@
|
| {
|
| DCHECK(isParentContextThread());
|
| DCHECK(m_workerObject);
|
| - s_liveMessagingProxyCount++;
|
| }
|
|
|
| InProcessWorkerMessagingProxy::~InProcessWorkerMessagingProxy()
|
| @@ -92,13 +89,6 @@
|
| DCHECK(!m_workerObject);
|
| if (m_loaderProxy)
|
| m_loaderProxy->detachProvider(this);
|
| - s_liveMessagingProxyCount--;
|
| -}
|
| -
|
| -int InProcessWorkerMessagingProxy::proxyCount()
|
| -{
|
| - DCHECK(isMainThread());
|
| - return s_liveMessagingProxyCount;
|
| }
|
|
|
| void InProcessWorkerMessagingProxy::startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode)
|
|
|