| Index: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| index 475fa60c2537d5a7d4f57bbd9ee377aa85404e3b..b3d673dd0128da6e5ebca9c3b1791830fc342d7c 100644
|
| --- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| +++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
|
| @@ -32,6 +32,8 @@
|
| #include "ServiceWorkerGlobalScopeClientImpl.h"
|
|
|
| #include "WebServiceWorkerContextClient.h"
|
| +#include "modules/serviceworkers/Response.h"
|
| +#include "platform/NotImplemented.h"
|
| #include "wtf/PassOwnPtr.h"
|
|
|
| namespace blink {
|
| @@ -51,6 +53,11 @@ void ServiceWorkerGlobalScopeClientImpl::didHandleInstallEvent(int installEventI
|
| m_client->didHandleInstallEvent(installEventID);
|
| }
|
|
|
| +void ServiceWorkerGlobalScopeClientImpl::didHandleFetchEvent(int fetchEventID, PassRefPtr<WebCore::Response> response)
|
| +{
|
| + notImplemented();
|
| +}
|
| +
|
| ServiceWorkerGlobalScopeClientImpl::ServiceWorkerGlobalScopeClientImpl(PassOwnPtr<WebServiceWorkerContextClient> client)
|
| : m_client(client)
|
| {
|
|
|