| Index: third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| index dde028722cc7a0a0647a60687b799b1f7d376f54..445334403f381803365b16aa4ecd83405a77f836 100644
|
| --- a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| @@ -79,7 +79,7 @@ void DedicatedWorkerGlobalScope::postMessage(ExecutionContext* context, PassRefP
|
| std::unique_ptr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(context, ports, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
| - thread()->workerObjectProxy().postMessageToWorkerObject(message, std::move(channels));
|
| + thread()->workerObjectProxy().postMessageToWorkerObject(std::move(message), std::move(channels));
|
| }
|
|
|
| DedicatedWorkerThread* DedicatedWorkerGlobalScope::thread() const
|
|
|