| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainer.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainer.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainer.h
|
| index 37fb79c82c1cabd4a8445a870146bd25a5041ec4..336c7d76511fd8968c015f0badd00f0f1bebfd63 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainer.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainer.h
|
| @@ -80,8 +80,8 @@ public:
|
| ScriptPromise getRegistrations(ScriptState*);
|
|
|
| // WebServiceWorkerProviderClient overrides.
|
| - void setController(WebPassOwnPtr<WebServiceWorker::Handle>, bool shouldNotifyControllerChange) override;
|
| - void dispatchMessageEvent(WebPassOwnPtr<WebServiceWorker::Handle>, const WebString& message, const WebMessagePortChannelArray&) override;
|
| + void setController(std::unique_ptr<WebServiceWorker::Handle>, bool shouldNotifyControllerChange) override;
|
| + void dispatchMessageEvent(std::unique_ptr<WebServiceWorker::Handle>, const WebString& message, const WebMessagePortChannelArray&) override;
|
|
|
| // EventTarget overrides.
|
| ExecutionContext* getExecutionContext() const override { return ContextLifecycleObserver::getExecutionContext(); }
|
|
|