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

Side by Side Diff: client/html/generated/html/frog/SVGTransform.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _SVGTransformImpl implements SVGTransform native "*SVGTransform" {
3
4 static final int SVG_TRANSFORM_MATRIX = 1;
5
6 static final int SVG_TRANSFORM_ROTATE = 4;
7
8 static final int SVG_TRANSFORM_SCALE = 3;
9
10 static final int SVG_TRANSFORM_SKEWX = 5;
11
12 static final int SVG_TRANSFORM_SKEWY = 6;
13
14 static final int SVG_TRANSFORM_TRANSLATE = 2;
15
16 static final int SVG_TRANSFORM_UNKNOWN = 0;
17
18 final num angle;
19
20 final _SVGMatrixImpl matrix;
21
22 final int type;
23
24 void setMatrix(_SVGMatrixImpl matrix) native;
25
26 void setRotate(num angle, num cx, num cy) native;
27
28 void setScale(num sx, num sy) native;
29
30 void setSkewX(num angle) native;
31
32 void setSkewY(num angle) native;
33
34 void setTranslate(num tx, num ty) native;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698