| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 [Supplemental, | 202 [Supplemental, |
| 203 Constructor(in ArrayBuffer buffer, | 203 Constructor(in ArrayBuffer buffer, |
| 204 [Optional] in unsigned long byteOffset, | 204 [Optional] in unsigned long byteOffset, |
| 205 [Optional] in unsigned long byteLength) | 205 [Optional] in unsigned long byteLength) |
| 206 ] | 206 ] |
| 207 interface DataView { | 207 interface DataView { |
| 208 // Undo this: | 208 // Undo this: |
| 209 // We have to use custom code because our code generator does not support int8
_t type. | 209 // We have to use custom code because our code generator does not support int8
_t type. |
| 210 // int8_t getInt8(in unsigned long byteOffset); | 210 // int8_t getInt8(in unsigned long byteOffset); |
| 211 // uint8_t getUint8(in unsigned long byteOffset); | 211 // uint8_t getUint8(in unsigned long byteOffset); |
| 212 [Suppressed] DOMObject getInt8(); | 212 [Suppressed] any getInt8(); |
| 213 [Suppressed] DOMObject getUint8(); | 213 [Suppressed] any getUint8(); |
| 214 byte getInt8(in unsigned long byteOffset) | 214 byte getInt8(in unsigned long byteOffset) |
| 215 raises (DOMException); | 215 raises (DOMException); |
| 216 octet getUint8(in unsigned long byteOffset) | 216 octet getUint8(in unsigned long byteOffset) |
| 217 raises (DOMException); | 217 raises (DOMException); |
| 218 | 218 |
| 219 // We have to use custom code because our code generator does not support uint
8_t type. | 219 // We have to use custom code because our code generator does not support uint
8_t type. |
| 220 // void setInt8(in unsigned long byteOffset, in int8_t value); | 220 // void setInt8(in unsigned long byteOffset, in int8_t value); |
| 221 // void setUint8(in unsigned long byteOffset, in uint8_t value); | 221 // void setUint8(in unsigned long byteOffset, in uint8_t value); |
| 222 [Suppressed] void setInt8(); | 222 [Suppressed] void setInt8(); |
| 223 [Suppressed] void setUint8(); | 223 [Suppressed] void setUint8(); |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 [Suppressed] boolean send(in ArrayBufferView data) raises(DOMException); | 334 [Suppressed] boolean send(in ArrayBufferView data) raises(DOMException); |
| 335 [Suppressed] boolean send(in Blob data) raises(DOMException); | 335 [Suppressed] boolean send(in Blob data) raises(DOMException); |
| 336 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 336 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
| 337 | 337 |
| 338 [Custom] void send(DOMString data) raises(DOMException); | 338 [Custom] void send(DOMString data) raises(DOMException); |
| 339 [Custom] void send(Blob data) raises(DOMException); | 339 [Custom] void send(Blob data) raises(DOMException); |
| 340 [Custom] void send(ArrayBuffer data) raises(DOMException); | 340 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 341 [Custom] void send(ArrayBufferView data) raises(DOMException); | 341 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 342 }; | 342 }; |
| 343 | 343 |
| 344 [Supplemental] |
| 345 interface XMLHttpRequest { |
| 346 [Custom] void send() |
| 347 raises(DOMException); |
| 348 [Custom] void send(in ArrayBuffer data) // FIXME: this should be eventually d
eprecated. |
| 349 raises(DOMException); |
| 350 [Custom] void send(in ArrayBufferView data) |
| 351 raises(DOMException); |
| 352 [Conditional=BLOB, Custom] void send(in Blob data) |
| 353 raises(DOMException); |
| 354 [Custom] void send(in Document data) |
| 355 raises(DOMException); |
| 356 [Custom] void send([StrictTypeChecking] in DOMString data) |
| 357 raises(DOMException); |
| 358 [Custom] void send(in DOMFormData data) |
| 359 raises(DOMException); |
| 360 }; |
| 361 |
| 362 |
| 344 [Suppressed] | 363 [Suppressed] |
| 345 interface Entity {}; | 364 interface Entity {}; |
| OLD | NEW |