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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 WebKitCSSMatrixJs extends DOMTypeJs implements WebKitCSSMatrix native "*We bKitCSSMatrix" { 2 class _WebKitCSSMatrixJs extends _DOMTypeJs 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 WebKitCSSMatrixJs inverse() native; 94 _WebKitCSSMatrixJs inverse() native;
95 95
96 WebKitCSSMatrixJs multiply(WebKitCSSMatrixJs secondMatrix) native; 96 _WebKitCSSMatrixJs multiply(_WebKitCSSMatrixJs secondMatrix) native;
97 97
98 WebKitCSSMatrixJs rotate(num rotX, num rotY, num rotZ) native; 98 _WebKitCSSMatrixJs rotate(num rotX, num rotY, num rotZ) native;
99 99
100 WebKitCSSMatrixJs 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 WebKitCSSMatrixJs 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 WebKitCSSMatrixJs skewX(num angle) native; 106 _WebKitCSSMatrixJs skewX(num angle) native;
107 107
108 WebKitCSSMatrixJs skewY(num angle) native; 108 _WebKitCSSMatrixJs skewY(num angle) native;
109 109
110 String toString() native; 110 String toString() native;
111 111
112 WebKitCSSMatrixJs translate(num x, num y, num z) native; 112 _WebKitCSSMatrixJs translate(num x, num y, num z) native;
113 } 113 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WebKitCSSKeyframesRule.dart ('k') | client/dom/generated/src/frog/WebKitCSSRegionRule.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698