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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class SVGTransform native "*SVGTransform" { 2 class SVGTransformJS implements SVGTransform native "*SVGTransform" {
3 3
4 static final int SVG_TRANSFORM_MATRIX = 1; 4 static final int SVG_TRANSFORM_MATRIX = 1;
5 5
6 static final int SVG_TRANSFORM_ROTATE = 4; 6 static final int SVG_TRANSFORM_ROTATE = 4;
7 7
8 static final int SVG_TRANSFORM_SCALE = 3; 8 static final int SVG_TRANSFORM_SCALE = 3;
9 9
10 static final int SVG_TRANSFORM_SKEWX = 5; 10 static final int SVG_TRANSFORM_SKEWX = 5;
11 11
12 static final int SVG_TRANSFORM_SKEWY = 6; 12 static final int SVG_TRANSFORM_SKEWY = 6;
13 13
14 static final int SVG_TRANSFORM_TRANSLATE = 2; 14 static final int SVG_TRANSFORM_TRANSLATE = 2;
15 15
16 static final int SVG_TRANSFORM_UNKNOWN = 0; 16 static final int SVG_TRANSFORM_UNKNOWN = 0;
17 17
18 num get angle() native "return this.angle;"; 18 num get angle() native "return this.angle;";
19 19
20 SVGMatrix get matrix() native "return this.matrix;"; 20 SVGMatrixJS get matrix() native "return this.matrix;";
21 21
22 int get type() native "return this.type;"; 22 int get type() native "return this.type;";
23 23
24 void setMatrix(SVGMatrix matrix) native; 24 void setMatrix(SVGMatrixJS matrix) native;
25 25
26 void setRotate(num angle, num cx, num cy) native; 26 void setRotate(num angle, num cx, num cy) native;
27 27
28 void setScale(num sx, num sy) native; 28 void setScale(num sx, num sy) native;
29 29
30 void setSkewX(num angle) native; 30 void setSkewX(num angle) native;
31 31
32 void setSkewY(num angle) native; 32 void setSkewY(num angle) native;
33 33
34 void setTranslate(num tx, num ty) native; 34 void setTranslate(num tx, num ty) native;
35 35
36 var dartObjectLocalStorage; 36 var dartObjectLocalStorage;
37 37
38 String get typeName() native; 38 String get typeName() native;
39 } 39 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGTitleElement.dart ('k') | client/dom/generated/src/frog/SVGTransformList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698