| Index: third_party/WebKit/Source/core/layout/shapes/RasterShape.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/shapes/RasterShape.cpp b/third_party/WebKit/Source/core/layout/shapes/RasterShape.cpp
|
| index 864925ed47e2b7620909ffccc0721a6d24f40eb6..3a7e445643e0ad159683169ee5495fee25924b11 100644
|
| --- a/third_party/WebKit/Source/core/layout/shapes/RasterShape.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/shapes/RasterShape.cpp
|
| @@ -77,8 +77,8 @@ RasterShapeIntervals::computeShapeMarginIntervals(int shapeMargin) const {
|
| ? size()
|
| : size() - offset() * 2 + shapeMargin * 2;
|
| std::unique_ptr<RasterShapeIntervals> result =
|
| - wrapUnique(new RasterShapeIntervals(marginIntervalsSize,
|
| - std::max(shapeMargin, offset())));
|
| + WTF::wrapUnique(new RasterShapeIntervals(
|
| + marginIntervalsSize, std::max(shapeMargin, offset())));
|
| MarginIntervalGenerator marginIntervalGenerator(shapeMargin);
|
|
|
| for (int y = bounds().y(); y < bounds().maxY(); ++y) {
|
|
|