| Index: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| index 9fa38ca183503335b4b25d49e0ecb8d9e271c231..6ab34b38649b9158fc8efcdfe8c2dc6deae6bf90 100644
|
| --- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| +++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| @@ -90,7 +90,7 @@ enum ImageSmoothingQuality {"low", "medium", "high"};
|
| void fillRect(unrestricted double x, unrestricted double y, unrestricted double width, unrestricted double height);
|
| void strokeRect(unrestricted double x, unrestricted double y, unrestricted double width, unrestricted double height);
|
|
|
| - // path API (see also CanvasPathMethods)
|
| + // path API (see also CanvasPath)
|
| void beginPath();
|
| void fill(optional CanvasFillRule winding);
|
| void fill(Path2D path, optional CanvasFillRule winding);
|
| @@ -156,4 +156,4 @@ enum ImageSmoothingQuality {"low", "medium", "high"};
|
|
|
| };
|
|
|
| -CanvasRenderingContext2D implements CanvasPathMethods;
|
| +CanvasRenderingContext2D implements CanvasPath;
|
|
|