Index: third_party/WebKit/Source/core/layout/ClipPathOperation.h |
diff --git a/third_party/WebKit/Source/core/layout/ClipPathOperation.h b/third_party/WebKit/Source/core/layout/ClipPathOperation.h |
index 75d23d31999b9c5c69ee6906a47904628766793b..385b101eccb01f789f5fa814fba7b417d7d2c1f6 100644 |
--- a/third_party/WebKit/Source/core/layout/ClipPathOperation.h |
+++ b/third_party/WebKit/Source/core/layout/ClipPathOperation.h |
@@ -101,14 +101,13 @@ public: |
const BasicShape* basicShape() const { return m_shape.get(); } |
bool isValid() const { return m_shape.get(); } |
- WindRule windRule() const { return m_shape->windRule(); } |
const Path& path(const FloatRect& boundingRect) |
{ |
ASSERT(m_shape); |
m_path.clear(); |
m_path = adoptPtr(new Path); |
m_shape->path(*m_path, boundingRect); |
- m_path->setWindRule(windRule()); |
+ m_path->setWindRule(m_shape->windRule()); |
return *m_path; |
} |