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

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

Issue 2030883003: Revert of Delay leak reporting until worker in-process proxies have been finalized. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/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)

Powered by Google App Engine
This is Rietveld 408576698