Index: Source/core/html/canvas/CanvasPathMethods.h |
diff --git a/Source/core/html/canvas/CanvasPathMethods.h b/Source/core/html/canvas/CanvasPathMethods.h |
index f5b51a589895eb9cab822e009adab7013c437785..ac5b065492877a20c0b36c527f66abc7b5147e07 100644 |
--- a/Source/core/html/canvas/CanvasPathMethods.h |
+++ b/Source/core/html/canvas/CanvasPathMethods.h |
@@ -46,7 +46,7 @@ public: |
void quadraticCurveTo(float cpx, float cpy, float x, float y); |
void bezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y); |
void arcTo(float x0, float y0, float x1, float y1, float radius, ExceptionState&); |
- void arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionState&); |
+ void arc(float x, float y, float radius, float startAngle, float endAngle, bool anticlockwise, ExceptionState&); |
void rect(float x, float y, float width, float height); |
virtual bool isTransformInvertible() const { return true; } |