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

Side by Side Diff: lib/dom/idl/dart/dart.idl

Issue 10780029: ArrayBuffer constructor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 // This file introduces / supplements and forces Dart declarations. 2 // This file introduces / supplements and forces Dart declarations.
3 3
4 module default { 4 module default {
5 FileList implements sequence<File>; 5 FileList implements sequence<File>;
6 HTMLCollection implements sequence<Node>; 6 HTMLCollection implements sequence<Node>;
7 MediaList implements sequence<DOMString>; 7 MediaList implements sequence<DOMString>;
8 NamedNodeMap implements sequence<Node>; 8 NamedNodeMap implements sequence<Node>;
9 NodeList implements sequence<Node>; 9 NodeList implements sequence<Node>;
10 StyleSheetList implements sequence<StyleSheet>; 10 StyleSheetList implements sequence<StyleSheet>;
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 [Suppressed, StrictTypeChecking, Custom] void getUniform(); 134 [Suppressed, StrictTypeChecking, Custom] void getUniform();
135 135
136 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D OMException); 136 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D OMException);
137 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); 137 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib();
138 }; 138 };
139 } 139 }
140 140
141 141
142 142
143 module canvas { 143 module canvas {
144 // TODO(dstockwell): Define these manually. 144 [Supplemental,
145 Constructor(in long length)] // Add constructor signature.
146 interface ArrayBuffer {
147 };
145 [Supplemental] 148 [Supplemental]
146 interface Float32Array { 149 interface Float32Array {
147 [Suppressed] void set(); 150 [Suppressed] void set();
148 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned long offset); 151 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned long offset);
149 }; 152 };
150 [Supplemental] 153 [Supplemental]
151 interface Float64Array { 154 interface Float64Array {
152 [Suppressed] void set(); 155 [Suppressed] void set();
153 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned long offset); 156 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned long offset);
154 }; 157 };
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 [Supplemental, Callback] // Add missing Callback attribute. 273 [Supplemental, Callback] // Add missing Callback attribute.
271 interface VoidCallback { 274 interface VoidCallback {
272 }; 275 };
273 }; 276 };
274 277
275 module svg { 278 module svg {
276 interface SVGNumber { 279 interface SVGNumber {
277 [StrictTypeChecking, Custom] attribute float value; 280 [StrictTypeChecking, Custom] attribute float value;
278 }; 281 };
279 } 282 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698