Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Unified Diff: html/canvas/CanvasRenderingContext2D.idl

Issue 13601015: Roll Blink IDLs forward. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « html/HTMLTemplateElement.idl ('k') | html/track/TextTrackCue.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: html/canvas/CanvasRenderingContext2D.idl
===================================================================
--- html/canvas/CanvasRenderingContext2D.idl (revision 20616)
+++ html/canvas/CanvasRenderingContext2D.idl (working copy)
@@ -23,7 +23,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// FIXME: we should use CanvasWindingRule once support for WebIDL is completed. (bug #106553)
enum CanvasWindingRule { "nonzero", "evenodd" };
interface CanvasRenderingContext2D : CanvasRenderingContext {
@@ -134,12 +133,12 @@
in [Optional=DefaultIsUndefined] boolean anticlockwise)
raises (DOMException);
- void fill(in [Optional] DOMString winding);
+ void fill(in [Optional] CanvasWindingRule winding);
void stroke();
- void clip(in [Optional] DOMString winding);
+ void clip(in [Optional] CanvasWindingRule winding);
boolean isPointInPath(in [Optional=DefaultIsUndefined] float x,
in [Optional=DefaultIsUndefined] float y,
- in [Optional] DOMString winding);
+ in [Optional] CanvasWindingRule winding);
boolean isPointInStroke(in [Optional=DefaultIsUndefined] float x,
in [Optional=DefaultIsUndefined] float y);
« no previous file with comments | « html/HTMLTemplateElement.idl ('k') | html/track/TextTrackCue.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698