| Index: third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.h
|
| diff --git a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.h b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.h
|
| index 07d2aefff51b77b02a64704f492b1bc8282eccf6..8f0752d44612077c3befaffdeca09396facab092 100644
|
| --- a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.h
|
| +++ b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerMessagingProxy.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "core/workers/InProcessWorkerMessagingProxy.h"
|
| #include "wtf/Allocator.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -18,7 +19,7 @@ public:
|
| protected:
|
| ~CompositorWorkerMessagingProxy() override;
|
|
|
| - PassOwnPtr<WorkerThread> createWorkerThread(double originTime) override;
|
| + std::unique_ptr<WorkerThread> createWorkerThread(double originTime) override;
|
| };
|
|
|
| } // namespace blink
|
|
|