Index: third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h |
diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h b/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h |
index 6adfb58c7881f767891a6f1f95e1d6a181cd01e9..6fb32995cf59617e02c306b0bf52fd738d28444d 100644 |
--- a/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h |
+++ b/third_party/WebKit/Source/platform/graphics/CompositorMutatorClient.h |
@@ -8,8 +8,7 @@ |
#include "platform/PlatformExport.h" |
#include "platform/heap/Handle.h" |
#include "public/platform/WebCompositorMutatorClient.h" |
-#include "wtf/OwnPtr.h" |
-#include "wtf/PassOwnPtr.h" |
+#include <memory> |
namespace blink { |
@@ -31,12 +30,12 @@ public: |
CompositorMutator* mutator() { return m_mutator.get(); } |
- void setMutationsForTesting(PassOwnPtr<CompositorMutations>); |
+ void setMutationsForTesting(std::unique_ptr<CompositorMutations>); |
private: |
cc::LayerTreeMutatorClient* m_client; |
CompositorMutationsTarget* m_mutationsTarget; |
Persistent<CompositorMutator> m_mutator; |
- OwnPtr<CompositorMutations> m_mutations; |
+ std::unique_ptr<CompositorMutations> m_mutations; |
}; |
} // namespace blink |