| Index: third_party/WebKit/Source/web/CompositorMutatorImpl.h
|
| diff --git a/third_party/WebKit/Source/web/CompositorMutatorImpl.h b/third_party/WebKit/Source/web/CompositorMutatorImpl.h
|
| index d0a660984ae312d5ec5ec81477358780a8840b02..537c7586e10806dbe97af06f2caeac8ef0c6aa9a 100644
|
| --- a/third_party/WebKit/Source/web/CompositorMutatorImpl.h
|
| +++ b/third_party/WebKit/Source/web/CompositorMutatorImpl.h
|
| @@ -10,8 +10,7 @@
|
| #include "platform/heap/Handle.h"
|
| #include "platform/heap/HeapAllocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/OwnPtr.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -54,7 +53,7 @@ private:
|
| using ProxyClients = HeapHashSet<WeakMember<CompositorProxyClientImpl>>;
|
| ProxyClients m_proxyClients;
|
|
|
| - OwnPtr<CustomCompositorAnimationManager> m_animationManager;
|
| + std::unique_ptr<CustomCompositorAnimationManager> m_animationManager;
|
| CompositorMutatorClient* m_client;
|
| };
|
|
|
|
|