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

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

Issue 8665012: Switch to " native '*Class' " (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 "*CanvasRen deringContext2D" {
3 3
4 Object fillStyle; 4 Object fillStyle;
5 5
6 String font; 6 String font;
7 7
8 num globalAlpha; 8 num globalAlpha;
9 9
10 String globalCompositeOperation; 10 String globalCompositeOperation;
11 11
12 String lineCap; 12 String lineCap;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 void stroke() native; 116 void stroke() native;
117 117
118 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative; 118 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative;
119 119
120 void strokeText(String text, num x, num y, [num maxWidth = null]) native; 120 void strokeText(String text, num x, num y, [num maxWidth = null]) native;
121 121
122 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native; 122 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native;
123 123
124 void translate(num tx, num ty) native; 124 void translate(num tx, num ty) native;
125 } 125 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/CanvasRenderingContext.dart ('k') | client/dom/generated/src/frog/CharacterData.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698