| Index: Source/web/ServiceWorkerGlobalScopeClientImpl.h
|
| diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.h b/Source/web/ServiceWorkerGlobalScopeClientImpl.h
|
| index c9b7ba13ccad19cb3a63689d09e606e80cd05c64..b850f1a4e0ef4ad5372ff9cd4e113984f2390f50 100644
|
| --- a/Source/web/ServiceWorkerGlobalScopeClientImpl.h
|
| +++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.h
|
| @@ -51,14 +51,14 @@ public:
|
|
|
| virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) OVERRIDE;
|
| virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEventResult) OVERRIDE;
|
| - virtual void didHandleFetchEvent(int fetchEventID, PassRefPtr<WebCore::Response>) OVERRIDE;
|
| + virtual void didHandleFetchEvent(int fetchEventID, PassRefPtrWillBeRawPtr<WebCore::Response>) OVERRIDE;
|
| virtual void didHandleSyncEvent(int syncEventID) OVERRIDE;
|
| virtual void postMessageToClient(int clientID, const WebString& message, PassOwnPtr<WebMessagePortChannelArray>) OVERRIDE;
|
|
|
| virtual void trace(WebCore::Visitor* visitor) OVERRIDE { WebCore::ServiceWorkerGlobalScopeClient::trace(visitor); }
|
|
|
| private:
|
| - ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&);
|
| + explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&);
|
|
|
| WebServiceWorkerContextClient& m_client;
|
| };
|
|
|