| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| index fc6672b356760fe949d42ae1093f073a5b1ac7a2..a171a94d6e0a5a6126795b7c7659986c1cb88a78 100644
 | 
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.cpp
 | 
| @@ -63,9 +63,8 @@ void ServiceWorker::postMessage(ScriptState* scriptState,
 | 
|    }
 | 
|  
 | 
|    // 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;
 | 
|    if (m_handle->serviceWorker()->state() == WebServiceWorkerStateRedundant) {
 | 
| 
 |