| 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 5fc05734936fa249acd88ca2016f789358835c15..43e905deae549bee8fdf739be5b09a5af0b69350 100644
|
| --- a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| @@ -90,9 +90,8 @@ void DedicatedWorkerGlobalScope::postMessage(
|
| const MessagePortArray& ports,
|
| ExceptionState& exceptionState) {
|
| // Disentangle the port in preparation for sending it to the remote context.
|
| - MessagePortChannelArray channels =
|
| - MessagePort::disentanglePorts(scriptState->getExecutionContext(), ports,
|
| - exceptionState);
|
| + MessagePortChannelArray channels = MessagePort::disentanglePorts(
|
| + scriptState->getExecutionContext(), ports, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
| workerObjectProxy().postMessageToWorkerObject(std::move(message),
|
|
|