| Index: content/child/service_worker/web_service_worker_impl.h
|
| diff --git a/content/child/service_worker/web_service_worker_impl.h b/content/child/service_worker/web_service_worker_impl.h
|
| index 48a323750b6747af3922f5fd3a547b30844ad019..b5ba50526335c879fb296cbdfdec2bebc3b16da9 100644
|
| --- a/content/child/service_worker/web_service_worker_impl.h
|
| +++ b/content/child/service_worker/web_service_worker_impl.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_IMPL_H_
|
| #define CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_IMPL_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/compiler_specific.h"
|
| @@ -14,7 +15,6 @@
|
| #include "base/strings/string16.h"
|
| #include "content/common/content_export.h"
|
| #include "third_party/WebKit/public/platform/WebMessagePortChannel.h"
|
| -#include "third_party/WebKit/public/platform/WebPassOwnPtr.h"
|
| #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorker.h"
|
| #include "third_party/WebKit/public/web/WebFrame.h"
|
|
|
| @@ -57,7 +57,7 @@ class CONTENT_EXPORT WebServiceWorkerImpl
|
|
|
| // Creates WebServiceWorker::Handle object that owns a reference to the given
|
| // WebServiceWorkerImpl object.
|
| - static blink::WebPassOwnPtr<blink::WebServiceWorker::Handle> CreateHandle(
|
| + static std::unique_ptr<blink::WebServiceWorker::Handle> CreateHandle(
|
| const scoped_refptr<WebServiceWorkerImpl>& worker);
|
|
|
| private:
|
|
|