| Index: third_party/WebKit/Source/core/paint/FilterPainter.h
|
| diff --git a/third_party/WebKit/Source/core/paint/FilterPainter.h b/third_party/WebKit/Source/core/paint/FilterPainter.h
|
| index c178b7027000eb7915a79288d598ea9e1804d4ec..966827a8c6e677f6befb973ad75ac0c8e5492bc7 100644
|
| --- a/third_party/WebKit/Source/core/paint/FilterPainter.h
|
| +++ b/third_party/WebKit/Source/core/paint/FilterPainter.h
|
| @@ -7,7 +7,7 @@
|
|
|
| #include "core/paint/PaintLayerPaintingInfo.h"
|
| #include "wtf/Allocator.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -25,7 +25,7 @@ public:
|
| private:
|
| bool m_filterInProgress;
|
| GraphicsContext& m_context;
|
| - OwnPtr<LayerClipRecorder> m_clipRecorder;
|
| + std::unique_ptr<LayerClipRecorder> m_clipRecorder;
|
| LayoutObject* m_layoutObject;
|
| };
|
|
|
|
|