Index: Source/core/html/canvas/CanvasRenderingContext2D.h |
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.h b/Source/core/html/canvas/CanvasRenderingContext2D.h |
index 9ec9e57a6d904db4d72c31eaf679a3646dde6eff..fbbedf13eeab5f2774318c70123251913702b10a 100644 |
--- a/Source/core/html/canvas/CanvasRenderingContext2D.h |
+++ b/Source/core/html/canvas/CanvasRenderingContext2D.h |
@@ -152,17 +152,14 @@ public: |
PassRefPtr<Path2D> currentPath(); |
void setCurrentPath(Path2D*); |
void fill(const String& winding = "nonzero"); |
- void fill(Path2D*); |
- void fill(Path2D*, const String& winding); |
+ void fill(Path2D*, const String& winding = "nonzero"); |
void stroke(); |
void stroke(Path2D*); |
void clip(const String& winding = "nonzero"); |
- void clip(Path2D*); |
- void clip(Path2D*, const String& winding); |
+ void clip(Path2D*, const String& winding = "nonzero"); |
bool isPointInPath(const float x, const float y, const String& winding = "nonzero"); |
- bool isPointInPath(Path2D*, const float x, const float y); |
- bool isPointInPath(Path2D*, const float x, const float y, const String& winding); |
+ bool isPointInPath(Path2D*, const float x, const float y, const String& winding = "nonzero"); |
bool isPointInStroke(const float x, const float y); |
bool isPointInStroke(Path2D*, const float x, const float y); |