| Index: third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp
|
| diff --git a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp
|
| index bb19152143cf4374c01403bb1210ffebc78b736f..60cba6a5e183d457422072ffdbf0eb0d9f385087 100644
|
| --- a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.cpp
|
| @@ -55,7 +55,7 @@ void CompositorWorkerGlobalScope::postMessage(ExecutionContext* executionContext
|
| std::unique_ptr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(executionContext, ports, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
| - thread()->workerObjectProxy().postMessageToWorkerObject(message, std::move(channels));
|
| + thread()->workerObjectProxy().postMessageToWorkerObject(std::move(message), std::move(channels));
|
| }
|
|
|
| int CompositorWorkerGlobalScope::requestAnimationFrame(FrameRequestCallback* callback)
|
|
|