Index: third_party/WebKit/Source/platform/testing/TestPaintArtifact.h |
diff --git a/third_party/WebKit/Source/platform/testing/TestPaintArtifact.h b/third_party/WebKit/Source/platform/testing/TestPaintArtifact.h |
index c8ff8a3b4cedc1dc57c25e1d0a4bfdc31a8d4ca6..5392ee24b29a5c5969756c5d607e50342a6531d5 100644 |
--- a/third_party/WebKit/Source/platform/testing/TestPaintArtifact.h |
+++ b/third_party/WebKit/Source/platform/testing/TestPaintArtifact.h |
@@ -10,9 +10,9 @@ |
#include "platform/graphics/paint/DisplayItemList.h" |
#include "platform/graphics/paint/PaintArtifact.h" |
#include "wtf/Allocator.h" |
-#include "wtf/OwnPtr.h" |
#include "wtf/PassRefPtr.h" |
#include "wtf/Vector.h" |
+#include <memory> |
namespace cc { |
class Layer; |
@@ -55,7 +55,7 @@ public: |
private: |
class DummyRectClient; |
- Vector<OwnPtr<DummyRectClient>> m_dummyClients; |
+ Vector<std::unique_ptr<DummyRectClient>> m_dummyClients; |
// Exists if m_built is false. |
DisplayItemList m_displayItemList; |