Index: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h |
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h |
index 912b24876584e509063564037bf1e7eb98107ec5..3061e95742eb6bf3d29b49de4c23cefdb5d5108c 100644 |
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h |
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h |
@@ -70,10 +70,10 @@ public: |
~ServiceWorkerGlobalScopeProxy() override; |
// WebServiceWorkerContextProxy overrides: |
- void setRegistration(WebPassOwnPtr<WebServiceWorkerRegistration::Handle>) override; |
+ void setRegistration(std::unique_ptr<WebServiceWorkerRegistration::Handle>) override; |
void dispatchActivateEvent(int) override; |
void dispatchExtendableMessageEvent(int eventID, const WebString& message, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&, const WebServiceWorkerClientInfo&) override; |
- void dispatchExtendableMessageEvent(int eventID, const WebString& message, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&, WebPassOwnPtr<WebServiceWorker::Handle>) override; |
+ void dispatchExtendableMessageEvent(int eventID, const WebString& message, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&, std::unique_ptr<WebServiceWorker::Handle>) override; |
void dispatchFetchEvent(int, const WebServiceWorkerRequest&) override; |
void dispatchForeignFetchEvent(int, const WebServiceWorkerRequest&) override; |
void dispatchGeofencingEvent(int, WebGeofencingEventType, const WebString& regionID, const WebCircularGeofencingRegion&) override; |