| Index: third_party/WebKit/Source/core/layout/shapes/PolygonShape.h
|
| diff --git a/third_party/WebKit/Source/core/layout/shapes/PolygonShape.h b/third_party/WebKit/Source/core/layout/shapes/PolygonShape.h
|
| index 62dd4a6469efa086db7f31d4e1f2c43e7d0e215e..f238812ab77ac9baee1c54a7583706c5376cea0c 100644
|
| --- a/third_party/WebKit/Source/core/layout/shapes/PolygonShape.h
|
| +++ b/third_party/WebKit/Source/core/layout/shapes/PolygonShape.h
|
| @@ -33,6 +33,7 @@
|
| #include "core/layout/shapes/Shape.h"
|
| #include "core/layout/shapes/ShapeInterval.h"
|
| #include "platform/geometry/FloatPolygon.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -61,7 +62,7 @@ private:
|
| class PolygonShape final : public Shape {
|
| WTF_MAKE_NONCOPYABLE(PolygonShape);
|
| public:
|
| - PolygonShape(PassOwnPtr<Vector<FloatPoint>> vertices, WindRule fillRule)
|
| + PolygonShape(std::unique_ptr<Vector<FloatPoint>> vertices, WindRule fillRule)
|
| : Shape()
|
| , m_polygon(std::move(vertices), fillRule)
|
| {
|
|
|