| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 195 |
| 196 [Supplemental] | 196 [Supplemental] |
| 197 interface Uint8ClampedArray { | 197 interface Uint8ClampedArray { |
| 198 // Avoid 'overriding static member BYTES_PER_ELEMENT'. | 198 // Avoid 'overriding static member BYTES_PER_ELEMENT'. |
| 199 [Suppressed] const long BYTES_PER_ELEMENT = 1; | 199 [Suppressed] const long BYTES_PER_ELEMENT = 1; |
| 200 | 200 |
| 201 [Suppressed] void set(); | 201 [Suppressed] void set(); |
| 202 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned l
ong offset); | 202 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned l
ong offset); |
| 203 }; | 203 }; |
| 204 | 204 |
| 205 [Supplemental, | 205 [Supplemental] |
| 206 Constructor(in ArrayBuffer buffer, | |
| 207 [Optional] in unsigned long byteOffset, | |
| 208 [Optional] in unsigned long byteLength) | |
| 209 ] | |
| 210 interface DataView { | 206 interface DataView { |
| 211 // Undo this: | 207 // Undo this: |
| 212 // We have to use custom code because our code generator does not support int8
_t type. | 208 // We have to use custom code because our code generator does not support int8
_t type. |
| 213 // int8_t getInt8(in unsigned long byteOffset); | 209 // int8_t getInt8(in unsigned long byteOffset); |
| 214 // uint8_t getUint8(in unsigned long byteOffset); | 210 // uint8_t getUint8(in unsigned long byteOffset); |
| 215 [Suppressed] any getInt8(); | 211 [Suppressed] any getInt8(); |
| 216 [Suppressed] any getUint8(); | 212 [Suppressed] any getUint8(); |
| 217 byte getInt8(in unsigned long byteOffset) | 213 byte getInt8(in unsigned long byteOffset) |
| 218 raises (DOMException); | 214 raises (DOMException); |
| 219 octet getUint8(in unsigned long byteOffset) | 215 octet getUint8(in unsigned long byteOffset) |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 [Suppressed] | 369 [Suppressed] |
| 374 interface ScriptProfile {}; | 370 interface ScriptProfile {}; |
| 375 | 371 |
| 376 | 372 |
| 377 [Suppressed] | 373 [Suppressed] |
| 378 interface ScriptProfileNode {}; | 374 interface ScriptProfileNode {}; |
| 379 | 375 |
| 380 | 376 |
| 381 [Suppressed] | 377 [Suppressed] |
| 382 interface Entity {}; | 378 interface Entity {}; |
| OLD | NEW |