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

Side by Side Diff: client/dom/generated/src/frog/WebKitCSSMatrix.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 WebKitCSSMatrix native "*WebKitCSSMatrix" { 2 class WebKitCSSMatrixJS implements WebKitCSSMatrix native "*WebKitCSSMatrix" {
3 WebKitCSSMatrix([String spec]) native; 3 WebKitCSSMatrix([String spec]) native;
4 4
5 5
6 num get a() native "return this.a;"; 6 num get a() native "return this.a;";
7 7
8 void set a(num value) native "this.a = value;"; 8 void set a(num value) native "this.a = value;";
9 9
10 num get b() native "return this.b;"; 10 num get b() native "return this.b;";
11 11
12 void set b(num value) native "this.b = value;"; 12 void set b(num value) native "this.b = value;";
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 void set m42(num value) native "this.m42 = value;"; 84 void set m42(num value) native "this.m42 = value;";
85 85
86 num get m43() native "return this.m43;"; 86 num get m43() native "return this.m43;";
87 87
88 void set m43(num value) native "this.m43 = value;"; 88 void set m43(num value) native "this.m43 = value;";
89 89
90 num get m44() native "return this.m44;"; 90 num get m44() native "return this.m44;";
91 91
92 void set m44(num value) native "this.m44 = value;"; 92 void set m44(num value) native "this.m44 = value;";
93 93
94 WebKitCSSMatrix inverse() native; 94 WebKitCSSMatrixJS inverse() native;
95 95
96 WebKitCSSMatrix multiply(WebKitCSSMatrix secondMatrix) native; 96 WebKitCSSMatrixJS multiply(WebKitCSSMatrixJS secondMatrix) native;
97 97
98 WebKitCSSMatrix rotate(num rotX, num rotY, num rotZ) native; 98 WebKitCSSMatrixJS rotate(num rotX, num rotY, num rotZ) native;
99 99
100 WebKitCSSMatrix rotateAxisAngle(num x, num y, num z, num angle) native; 100 WebKitCSSMatrixJS rotateAxisAngle(num x, num y, num z, num angle) native;
101 101
102 WebKitCSSMatrix scale(num scaleX, num scaleY, num scaleZ) native; 102 WebKitCSSMatrixJS scale(num scaleX, num scaleY, num scaleZ) native;
103 103
104 void setMatrixValue(String string) native; 104 void setMatrixValue(String string) native;
105 105
106 WebKitCSSMatrix skewX(num angle) native; 106 WebKitCSSMatrixJS skewX(num angle) native;
107 107
108 WebKitCSSMatrix skewY(num angle) native; 108 WebKitCSSMatrixJS skewY(num angle) native;
109 109
110 String toString() native; 110 String toString() native;
111 111
112 WebKitCSSMatrix translate(num x, num y, num z) native; 112 WebKitCSSMatrixJS translate(num x, num y, num z) native;
113 113
114 var dartObjectLocalStorage; 114 var dartObjectLocalStorage;
115 115
116 String get typeName() native; 116 String get typeName() native;
117 } 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