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

Side by Side Diff: client/dom/generated/src/frog/WebKitCSSMatrix.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 WebKitCSSMatrix native "*WebKitCSSMatrix" { 2 class WebKitCSSMatrix native "*WebKitCSSMatrix" {
3 WebKitCSSMatrix([String spec]) native; 3 WebKitCSSMatrix([String spec]) native;
4 4
5 5
6 num a; 6 num get a() native "return this.a;";
7 7
8 num b; 8 void set a(num value) native "this.a = value;";
9 9
10 num c; 10 num get b() native "return this.b;";
11 11
12 num d; 12 void set b(num value) native "this.b = value;";
13 13
14 num e; 14 num get c() native "return this.c;";
15 15
16 num f; 16 void set c(num value) native "this.c = value;";
17 17
18 num m11; 18 num get d() native "return this.d;";
19 19
20 num m12; 20 void set d(num value) native "this.d = value;";
21 21
22 num m13; 22 num get e() native "return this.e;";
23 23
24 num m14; 24 void set e(num value) native "this.e = value;";
25 25
26 num m21; 26 num get f() native "return this.f;";
27 27
28 num m22; 28 void set f(num value) native "this.f = value;";
29 29
30 num m23; 30 num get m11() native "return this.m11;";
31 31
32 num m24; 32 void set m11(num value) native "this.m11 = value;";
33 33
34 num m31; 34 num get m12() native "return this.m12;";
35 35
36 num m32; 36 void set m12(num value) native "this.m12 = value;";
37 37
38 num m33; 38 num get m13() native "return this.m13;";
39 39
40 num m34; 40 void set m13(num value) native "this.m13 = value;";
41 41
42 num m41; 42 num get m14() native "return this.m14;";
43 43
44 num m42; 44 void set m14(num value) native "this.m14 = value;";
45 45
46 num m43; 46 num get m21() native "return this.m21;";
47 47
48 num m44; 48 void set m21(num value) native "this.m21 = value;";
49
50 num get m22() native "return this.m22;";
51
52 void set m22(num value) native "this.m22 = value;";
53
54 num get m23() native "return this.m23;";
55
56 void set m23(num value) native "this.m23 = value;";
57
58 num get m24() native "return this.m24;";
59
60 void set m24(num value) native "this.m24 = value;";
61
62 num get m31() native "return this.m31;";
63
64 void set m31(num value) native "this.m31 = value;";
65
66 num get m32() native "return this.m32;";
67
68 void set m32(num value) native "this.m32 = value;";
69
70 num get m33() native "return this.m33;";
71
72 void set m33(num value) native "this.m33 = value;";
73
74 num get m34() native "return this.m34;";
75
76 void set m34(num value) native "this.m34 = value;";
77
78 num get m41() native "return this.m41;";
79
80 void set m41(num value) native "this.m41 = value;";
81
82 num get m42() native "return this.m42;";
83
84 void set m42(num value) native "this.m42 = value;";
85
86 num get m43() native "return this.m43;";
87
88 void set m43(num value) native "this.m43 = value;";
89
90 num get m44() native "return this.m44;";
91
92 void set m44(num value) native "this.m44 = value;";
49 93
50 WebKitCSSMatrix inverse() native; 94 WebKitCSSMatrix inverse() native;
51 95
52 WebKitCSSMatrix multiply(WebKitCSSMatrix secondMatrix) native; 96 WebKitCSSMatrix multiply(WebKitCSSMatrix secondMatrix) native;
53 97
54 WebKitCSSMatrix rotate(num rotX, num rotY, num rotZ) native; 98 WebKitCSSMatrix rotate(num rotX, num rotY, num rotZ) native;
55 99
56 WebKitCSSMatrix rotateAxisAngle(num x, num y, num z, num angle) native; 100 WebKitCSSMatrix rotateAxisAngle(num x, num y, num z, num angle) native;
57 101
58 WebKitCSSMatrix scale(num scaleX, num scaleY, num scaleZ) native; 102 WebKitCSSMatrix scale(num scaleX, num scaleY, num scaleZ) native;
59 103
60 void setMatrixValue(String string) native; 104 void setMatrixValue(String string) native;
61 105
62 WebKitCSSMatrix skewX(num angle) native; 106 WebKitCSSMatrix skewX(num angle) native;
63 107
64 WebKitCSSMatrix skewY(num angle) native; 108 WebKitCSSMatrix skewY(num angle) native;
65 109
66 String toString() native; 110 String toString() native;
67 111
68 WebKitCSSMatrix translate(num x, num y, num z) native; 112 WebKitCSSMatrix translate(num x, num y, num z) native;
69 113
70 var dartObjectLocalStorage; 114 var dartObjectLocalStorage;
71 115
72 String get typeName() native; 116 String get typeName() native;
73 } 117 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WebKitCSSKeyframesRule.dart ('k') | client/dom/generated/src/frog/WebKitCSSTransformValue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698