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

Side by Side Diff: client/dom/generated/src/frog/CanvasRenderingContext2D.dart

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend eringContext2D" { 2 class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend eringContext2D" {
3 3
4 String font; 4 String font;
5 5
6 num globalAlpha; 6 num globalAlpha;
7 7
8 String globalCompositeOperation; 8 String globalCompositeOperation;
9 9
10 String lineCap; 10 String lineCap;
11 11
12 String lineJoin; 12 String lineJoin;
13 13
14 num lineWidth; 14 num lineWidth;
15 15
16 num miterLimit; 16 num miterLimit;
17 17
18 num shadowBlur; 18 num shadowBlur;
19 19
20 String shadowColor; 20 String shadowColor;
21 21
22 num shadowOffsetX; 22 num shadowOffsetX;
23 23
24 num shadowOffsetY; 24 num shadowOffsetY;
25 25
26 String textAlign; 26 String textAlign;
27 27
28 String textBaseline; 28 String textBaseline;
29 29
30 num webkitLineDashOffset;
31
30 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise) native; 32 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise) native;
31 33
32 void arcTo(num x1, num y1, num x2, num y2, num radius) native; 34 void arcTo(num x1, num y1, num x2, num y2, num radius) native;
33 35
34 void beginPath() native; 36 void beginPath() native;
35 37
36 void bezierCurveTo(num cp1x, num cp1y, num cp2x, num cp2y, num x, num y) nativ e; 38 void bezierCurveTo(num cp1x, num cp1y, num cp2x, num cp2y, num x, num y) nativ e;
37 39
38 void clearRect(num x, num y, num width, num height) native; 40 void clearRect(num x, num y, num width, num height) native;
39 41
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 void stroke() native; 114 void stroke() native;
113 115
114 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative; 116 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative;
115 117
116 void strokeText(String text, num x, num y, [num maxWidth = null]) native; 118 void strokeText(String text, num x, num y, [num maxWidth = null]) native;
117 119
118 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native; 120 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native;
119 121
120 void translate(num tx, num ty) native; 122 void translate(num tx, num ty) native;
121 } 123 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/ArrayBuffer.dart ('k') | client/dom/generated/src/frog/Clipboard.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698