| Index: third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| index 44736ce20c0e2fbd4ccbff9dbb14dcb20f45325e..c84c64a3182ecff01668ad5951cbee807ee23784 100644
|
| --- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| @@ -17,8 +17,7 @@
|
| namespace blink {
|
|
|
| InProcessWorkerBase::InProcessWorkerBase(ExecutionContext* context)
|
| - : AbstractWorker(context),
|
| - m_contextProxy(nullptr) {}
|
| + : AbstractWorker(context), m_contextProxy(nullptr) {}
|
|
|
| InProcessWorkerBase::~InProcessWorkerBase() {
|
| DCHECK(isMainThread());
|
| @@ -33,9 +32,8 @@ void InProcessWorkerBase::postMessage(ScriptState* scriptState,
|
| ExceptionState& exceptionState) {
|
| DCHECK(m_contextProxy);
|
| // 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;
|
| m_contextProxy->postMessageToWorkerGlobalScope(std::move(message),
|
|
|