| Index: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| index 755a1b7a2c6269803b1326fdf6a03a26798d4a47..3c570586f85cf1480445bad01d364b3cd1c57875 100644
|
| --- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| +++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| @@ -88,6 +88,11 @@ void ServiceWorkerGlobalScopeClientImpl::didHandleSyncEvent(int syncEventID)
|
| m_client.didHandleSyncEvent(syncEventID);
|
| }
|
|
|
| +void ServiceWorkerGlobalScopeClientImpl::didHandlePushEvent(int eventID)
|
| +{
|
| + m_client.didHandlePushEvent(eventID);
|
| +}
|
| +
|
| void ServiceWorkerGlobalScopeClientImpl::postMessageToClient(int clientID, const WebString& message, PassOwnPtr<WebMessagePortChannelArray> webChannels)
|
| {
|
| m_client.postMessageToClient(clientID, message, webChannels.leakPtr());
|
|
|