OLD | NEW |
1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
2 | 2 |
3 [Supplemental, | 3 [Supplemental, |
4 Constructor] | 4 Constructor] |
5 interface AudioContext {}; | 5 interface AudioContext {}; |
6 | 6 |
7 [Supplemental] | 7 [Supplemental] |
8 interface Document { | 8 interface Document { |
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 | 194 |
195 [Supplemental] | 195 [Supplemental] |
196 interface Uint8ClampedArray { | 196 interface Uint8ClampedArray { |
197 // Avoid 'overriding static member BYTES_PER_ELEMENT'. | 197 // Avoid 'overriding static member BYTES_PER_ELEMENT'. |
198 [Suppressed] const long BYTES_PER_ELEMENT = 1; | 198 [Suppressed] const long BYTES_PER_ELEMENT = 1; |
199 | 199 |
200 [Suppressed] void set(); | 200 [Suppressed] void set(); |
201 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned l
ong offset); | 201 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned l
ong offset); |
202 }; | 202 }; |
203 | 203 |
204 [Supplemental, | 204 [Supplemental] |
205 Constructor(in ArrayBuffer buffer, | |
206 [Optional] in unsigned long byteOffset, | |
207 [Optional] in unsigned long byteLength) | |
208 ] | |
209 interface DataView { | 205 interface DataView { |
210 // Undo this: | 206 // Undo this: |
211 // We have to use custom code because our code generator does not support int8
_t type. | 207 // We have to use custom code because our code generator does not support int8
_t type. |
212 // int8_t getInt8(in unsigned long byteOffset); | 208 // int8_t getInt8(in unsigned long byteOffset); |
213 // uint8_t getUint8(in unsigned long byteOffset); | 209 // uint8_t getUint8(in unsigned long byteOffset); |
214 [Suppressed] any getInt8(); | 210 [Suppressed] any getInt8(); |
215 [Suppressed] any getUint8(); | 211 [Suppressed] any getUint8(); |
216 [RaisesException] byte getInt8(in unsigned long byteOffset); | 212 [RaisesException] byte getInt8(in unsigned long byteOffset); |
217 [RaisesException] octet getUint8(in unsigned long byteOffset); | 213 [RaisesException] octet getUint8(in unsigned long byteOffset); |
218 | 214 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 [Suppressed] | 345 [Suppressed] |
350 interface InspectorFrontendHost {}; | 346 interface InspectorFrontendHost {}; |
351 | 347 |
352 | 348 |
353 [Suppressed] | 349 [Suppressed] |
354 interface JavaScriptCallFrame {}; | 350 interface JavaScriptCallFrame {}; |
355 | 351 |
356 | 352 |
357 [Suppressed] | 353 [Suppressed] |
358 interface Entity {}; | 354 interface Entity {}; |
OLD | NEW |