Index: Source/platform/graphics/Path.cpp |
diff --git a/Source/platform/graphics/Path.cpp b/Source/platform/graphics/Path.cpp |
index 49cc81487d77b6f2c86efcc9b72cc23577ae6614..89875f5d836a73bd56e9c3fa0a5086af87b81c8b 100644 |
--- a/Source/platform/graphics/Path.cpp |
+++ b/Source/platform/graphics/Path.cpp |
@@ -491,17 +491,17 @@ void Path::translate(const FloatSize& size) |
bool Path::subtractPath(const Path& other) |
{ |
- return Op(m_path, other.m_path, kDifference_PathOp, &m_path); |
+ return Op(m_path, other.m_path, kDifference_SkPathOp, &m_path); |
} |
bool Path::intersectPath(const Path& other) |
{ |
- return Op(m_path, other.m_path, kIntersect_PathOp, &m_path); |
+ return Op(m_path, other.m_path, kIntersect_SkPathOp, &m_path); |
} |
bool Path::unionPath(const Path& other) |
{ |
- return Op(m_path, other.m_path, kUnion_PathOp, &m_path); |
+ return Op(m_path, other.m_path, kUnion_SkPathOp, &m_path); |
} |
#if ENABLE(ASSERT) |