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/SVGTransform.dart

Issue 9663027: Remove generated directories with 100s of files. (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 _SVGTransformJs extends _DOMTypeJs implements SVGTransform native "*SVGTra nsform" {
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 _SVGMatrixJs matrix;
21
22 final int type;
23
24 void setMatrix(_SVGMatrixJs 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
« 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