Index: Source/platform/graphics/Path.h |
diff --git a/Source/platform/graphics/Path.h b/Source/platform/graphics/Path.h |
index 431f03d206cb85bf96fcece92237ce572b5482d4..1698ef9993084246c660be045cb7eba08637ed0d 100644 |
--- a/Source/platform/graphics/Path.h |
+++ b/Source/platform/graphics/Path.h |
@@ -73,6 +73,7 @@ public: |
~Path(); |
Path(const Path&); |
+ Path(const SkPath&); |
Path& operator=(const Path&); |
bool operator==(const Path&) const; |
@@ -143,6 +144,9 @@ public: |
void addPathForRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius); |
void addBeziersForRoundedRect(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius); |
+ bool subtractPath(const Path&); |
+ bool intersectPath(const Path&); |
+ |
// Updates the path to the union (inclusive-or) of itself with the given argument. |
bool unionPath(const Path& other); |