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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 SVGMatrix native "*SVGMatrix" { 2 class SVGMatrix native "*SVGMatrix" {
3 3
4 num a; 4 num get a() native "return this.a;";
5 5
6 num b; 6 void set a(num value) native "this.a = value;";
7 7
8 num c; 8 num get b() native "return this.b;";
9 9
10 num d; 10 void set b(num value) native "this.b = value;";
11 11
12 num e; 12 num get c() native "return this.c;";
13 13
14 num f; 14 void set c(num value) native "this.c = value;";
15
16 num get d() native "return this.d;";
17
18 void set d(num value) native "this.d = value;";
19
20 num get e() native "return this.e;";
21
22 void set e(num value) native "this.e = value;";
23
24 num get f() native "return this.f;";
25
26 void set f(num value) native "this.f = value;";
15 27
16 SVGMatrix flipX() native; 28 SVGMatrix flipX() native;
17 29
18 SVGMatrix flipY() native; 30 SVGMatrix flipY() native;
19 31
20 SVGMatrix inverse() native; 32 SVGMatrix inverse() native;
21 33
22 SVGMatrix multiply(SVGMatrix secondMatrix) native; 34 SVGMatrix multiply(SVGMatrix secondMatrix) native;
23 35
24 SVGMatrix rotate(num angle) native; 36 SVGMatrix rotate(num angle) native;
25 37
26 SVGMatrix rotateFromVector(num x, num y) native; 38 SVGMatrix rotateFromVector(num x, num y) native;
27 39
28 SVGMatrix scale(num scaleFactor) native; 40 SVGMatrix scale(num scaleFactor) native;
29 41
30 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native; 42 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
31 43
32 SVGMatrix skewX(num angle) native; 44 SVGMatrix skewX(num angle) native;
33 45
34 SVGMatrix skewY(num angle) native; 46 SVGMatrix skewY(num angle) native;
35 47
36 SVGMatrix translate(num x, num y) native; 48 SVGMatrix translate(num x, num y) native;
37 49
38 var dartObjectLocalStorage; 50 var dartObjectLocalStorage;
39 51
40 String get typeName() native; 52 String get typeName() native;
41 } 53 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGMaskElement.dart ('k') | client/dom/generated/src/frog/SVGNumber.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698