| Index: third_party/WebKit/Source/core/layout/shapes/BoxShape.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/shapes/BoxShape.cpp b/third_party/WebKit/Source/core/layout/shapes/BoxShape.cpp
|
| index 5d53809b2d47f943929550b77a1a46351cb93022..b94c840be607666957298353125e51a4428b4185 100644
|
| --- a/third_party/WebKit/Source/core/layout/shapes/BoxShape.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/shapes/BoxShape.cpp
|
| @@ -97,9 +97,9 @@ LineSegment BoxShape::getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logi
|
|
|
| void BoxShape::buildDisplayPaths(DisplayPaths& paths) const
|
| {
|
| - paths.shape.addRoundedRect(m_bounds.rect(), m_bounds.radii().topLeft(), m_bounds.radii().topRight(), m_bounds.radii().bottomLeft(), m_bounds.radii().bottomRight());
|
| + paths.shape.addRoundedRect(m_bounds.rect(), m_bounds.getRadii().topLeft(), m_bounds.getRadii().topRight(), m_bounds.getRadii().bottomLeft(), m_bounds.getRadii().bottomRight());
|
| if (shapeMargin())
|
| - paths.marginShape.addRoundedRect(shapeMarginBounds().rect(), shapeMarginBounds().radii().topLeft(), shapeMarginBounds().radii().topRight(), shapeMarginBounds().radii().bottomLeft(), shapeMarginBounds().radii().bottomRight());
|
| + paths.marginShape.addRoundedRect(shapeMarginBounds().rect(), shapeMarginBounds().getRadii().topLeft(), shapeMarginBounds().getRadii().topRight(), shapeMarginBounds().getRadii().bottomLeft(), shapeMarginBounds().getRadii().bottomRight());
|
| }
|
|
|
| } // namespace blink
|
|
|