Index: third_party/WebKit/Source/core/css/BasicShapeFunctions.cpp |
diff --git a/third_party/WebKit/Source/core/css/BasicShapeFunctions.cpp b/third_party/WebKit/Source/core/css/BasicShapeFunctions.cpp |
index 04169d6833e123b767c5e08ef398ab99469326fa..31d495c2dbd79207dfcc64dd2bf12180acf3ca69 100644 |
--- a/third_party/WebKit/Source/core/css/BasicShapeFunctions.cpp |
+++ b/third_party/WebKit/Source/core/css/BasicShapeFunctions.cpp |
@@ -220,7 +220,7 @@ PassRefPtr<BasicShape> basicShapeForValue(const StyleResolverState& state, const |
const CSSBasicShapePolygonValue& polygonValue = toCSSBasicShapePolygonValue(basicShapeValue); |
RefPtr<BasicShapePolygon> polygon = BasicShapePolygon::create(); |
- polygon->setWindRule(polygonValue.windRule()); |
+ polygon->setWindRule(polygonValue.getWindRule()); |
const WillBeHeapVector<RefPtrWillBeMember<CSSPrimitiveValue>>& values = polygonValue.values(); |
for (unsigned i = 0; i < values.size(); i += 2) |
polygon->appendPoint(convertToLength(state, values.at(i).get()), convertToLength(state, values.at(i + 1).get())); |