| Index: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| index 3f449e4293283dba8231c1a35c462e9b6b702648..938d87b39bd41cc86d0e44151b1f71694a711733 100644
|
| --- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| +++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| @@ -88,6 +88,16 @@ void ServiceWorkerGlobalScopeClientImpl::didHandlePushEvent(int pushEventID, Web
|
| m_client.didHandlePushEvent(pushEventID, result);
|
| }
|
|
|
| +void ServiceWorkerGlobalScopeClientImpl::didHandleNotificationClickEvent(int eventID, WebServiceWorkerEventResult result)
|
| +{
|
| + m_client.didHandleNotificationClickEvent(eventID, result);
|
| +}
|
| +
|
| +void ServiceWorkerGlobalScopeClientImpl::didHandleNotificationErrorEvent(int eventID, WebServiceWorkerEventResult result)
|
| +{
|
| + m_client.didHandleNotificationErrorEvent(eventID, result);
|
| +}
|
| +
|
| void ServiceWorkerGlobalScopeClientImpl::didHandleSyncEvent(int syncEventID)
|
| {
|
| m_client.didHandleSyncEvent(syncEventID);
|
|
|