| Index: Source/core/html/canvas/CanvasRenderingContext2D.h
|
| diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.h b/Source/core/html/canvas/CanvasRenderingContext2D.h
|
| index 40cb44c2c38c1a8afb11633024f767dc7ed0a7a0..088158f9437a44daa963d36464415d22ec0a6abd 100644
|
| --- a/Source/core/html/canvas/CanvasRenderingContext2D.h
|
| +++ b/Source/core/html/canvas/CanvasRenderingContext2D.h
|
| @@ -148,11 +148,13 @@ public:
|
| PassRefPtr<DOMPath> currentPath();
|
| void setCurrentPath(DOMPath*);
|
| void fill(const String& winding = "nonzero");
|
| - void fill(DOMPath*, const String& winding = "nonzero");
|
| + void fill(DOMPath*, ExceptionState&);
|
| + void fill(DOMPath*, const String& winding, ExceptionState&);
|
| void stroke();
|
| - void stroke(DOMPath*);
|
| + void stroke(DOMPath*, ExceptionState&);
|
| void clip(const String& winding = "nonzero");
|
| - void clip(DOMPath*, const String& winding = "nonzero");
|
| + void clip(DOMPath*, ExceptionState&);
|
| + void clip(DOMPath*, const String& winding, ExceptionState&);
|
|
|
| bool isPointInPath(const float x, const float y, const String& winding = "nonzero");
|
| bool isPointInStroke(const float x, const float y);
|
|
|