| Index: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| index 10b5cff59cf7575a133eb5fb2d86729c59e4e250..ae07673c0e610ab11a0fd82a41d257f4b7f7bfba 100644
|
| --- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| +++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| @@ -48,10 +48,10 @@ ServiceWorkerGlobalScopeClientImpl::~ServiceWorkerGlobalScopeClientImpl()
|
| {
|
| }
|
|
|
| -void ServiceWorkerGlobalScopeClientImpl::didHandleInstallEvent(int installEventID)
|
| +void ServiceWorkerGlobalScopeClientImpl::didHandleInstallEvent(int installEventID, bool rejected)
|
| {
|
| if (m_client)
|
| - m_client->didHandleInstallEvent(installEventID);
|
| + m_client->didHandleInstallEvent(installEventID, rejected);
|
| }
|
|
|
| void ServiceWorkerGlobalScopeClientImpl::didHandleFetchEvent(int fetchEventID, PassRefPtr<WebCore::Response> response)
|
|
|