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

Unified Diff: third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp

Issue 2124693002: Worker: Fix broken GC logic on Dedicated Worker while DOMTimer is set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
diff --git a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
index c6c7e9113f456e1b696f0397fdbba01773bee280..2c4e9550e3a2b847848bd38d93c87ff332f2ed18 100644
--- a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
+++ b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.cpp
@@ -4,6 +4,7 @@
#include "modules/compositorworker/CompositorWorkerMessagingProxy.h"
+#include "core/workers/InProcessWorkerBase.h"
#include "core/workers/WorkerThreadStartupData.h"
#include "modules/compositorworker/CompositorWorkerThread.h"
#include <memory>
@@ -11,7 +12,7 @@
namespace blink {
CompositorWorkerMessagingProxy::CompositorWorkerMessagingProxy(InProcessWorkerBase* worker, WorkerClients* workerClients)
- : InProcessWorkerMessagingProxy(worker, workerClients)
+ : InProcessWorkerMessagingProxy(worker->getExecutionContext(), worker, workerClients)
haraken 2016/08/05 08:20:58 Maybe is it redundant to pass both |worker| and |w
nhiroki 2016/08/08 09:19:14 Reverted this change (see my reply to kinuko's com
{
}

Powered by Google App Engine
This is Rietveld 408576698