Chromium Code Reviews| 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
|
| { |
| } |