Index: third_party/WebKit/Source/core/paint/SVGFilterPainter.h |
diff --git a/third_party/WebKit/Source/core/paint/SVGFilterPainter.h b/third_party/WebKit/Source/core/paint/SVGFilterPainter.h |
index ffbdac373404da1915bbce913ceca38c45605635..1d650365b95203ea9b4514aee54ddb79321fb1db 100644 |
--- a/third_party/WebKit/Source/core/paint/SVGFilterPainter.h |
+++ b/third_party/WebKit/Source/core/paint/SVGFilterPainter.h |
@@ -8,7 +8,7 @@ |
#include "platform/graphics/GraphicsContext.h" |
#include "platform/graphics/paint/PaintController.h" |
#include "wtf/Allocator.h" |
-#include <memory> |
+#include "wtf/OwnPtr.h" |
namespace blink { |
@@ -28,8 +28,8 @@ public: |
GraphicsContext& paintingContext() const { return m_initialContext; } |
private: |
- std::unique_ptr<PaintController> m_paintController; |
- std::unique_ptr<GraphicsContext> m_context; |
+ OwnPtr<PaintController> m_paintController; |
+ OwnPtr<GraphicsContext> m_context; |
GraphicsContext& m_initialContext; |
}; |