| Index: Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| diff --git a/Source/web/ServiceWorkerGlobalScopeProxy.cpp b/Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| index 63caf2f746a10141a1e4e90634dcc450df1b2fde..e02289e5ac86750fbbde703a183f7b7eae367de7 100644
|
| --- a/Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| +++ b/Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| @@ -45,7 +45,6 @@
|
| #include "modules/geofencing/CircularGeofencingRegion.h"
|
| #include "modules/geofencing/GeofencingEvent.h"
|
| #include "modules/navigatorconnect/AcceptConnectionObserver.h"
|
| -#include "modules/navigatorconnect/CrossOriginConnectEvent.h"
|
| #include "modules/navigatorconnect/CrossOriginServiceWorkerClient.h"
|
| #include "modules/navigatorconnect/ServicePortCollection.h"
|
| #include "modules/navigatorconnect/WorkerNavigatorServices.h"
|
| @@ -171,15 +170,6 @@ void ServiceWorkerGlobalScopeProxy::dispatchSyncEvent(int eventID, const WebSync
|
| m_workerGlobalScope->dispatchExtendableEvent(event.release(), observer);
|
| }
|
|
|
| -void ServiceWorkerGlobalScopeProxy::dispatchCrossOriginConnectEvent(int eventID, const WebCrossOriginServiceWorkerClient& webClient)
|
| -{
|
| - ASSERT(m_workerGlobalScope);
|
| - AcceptConnectionObserver* observer = AcceptConnectionObserver::create(m_workerGlobalScope, eventID);
|
| - CrossOriginServiceWorkerClient* client = CrossOriginServiceWorkerClient::create(webClient);
|
| - m_workerGlobalScope->dispatchEvent(CrossOriginConnectEvent::create(observer, client));
|
| - observer->didDispatchEvent();
|
| -}
|
| -
|
| void ServiceWorkerGlobalScopeProxy::dispatchCrossOriginMessageEvent(const WebCrossOriginServiceWorkerClient& webClient, const WebString& message, const WebMessagePortChannelArray& webChannels)
|
| {
|
| ASSERT(m_workerGlobalScope);
|
|
|