| 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 // Change the return type to Dictionary so that rows are exposed in the Dart | 313 // Change the return type to Dictionary so that rows are exposed in the Dart |
| 314 // API as a Maps, with the appropriate conversion in JavaScript. | 314 // API as a Maps, with the appropriate conversion in JavaScript. |
| 315 [Suppressed] DOMObject item(in unsigned long index); | 315 [Suppressed] DOMObject item(in unsigned long index); |
| 316 [Custom] Dictionary item(in unsigned long index); | 316 [Custom] Dictionary item(in unsigned long index); |
| 317 }; | 317 }; |
| 318 | 318 |
| 319 [Supplemental] | 319 [Supplemental] |
| 320 interface WebSocket { | 320 interface WebSocket { |
| 321 // Suppress the default since it has non-standard return type and add | 321 // Suppress the default since it has non-standard return type and add |
| 322 // overrides. | 322 // overrides. |
| 323 [Suppressed] boolean send(in ArrayBuffer data) raises(DOMException); |
| 324 [Suppressed] boolean send(in ArrayBufferView data) raises(DOMException); |
| 325 [Suppressed] boolean send(in Blob data) raises(DOMException); |
| 323 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 326 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
| 327 |
| 324 [Custom] void send(DOMString data) raises(DOMException); | 328 [Custom] void send(DOMString data) raises(DOMException); |
| 325 [Custom] void send(Blob data) raises(DOMException); | 329 [Custom] void send(Blob data) raises(DOMException); |
| 326 [Custom] void send(ArrayBuffer data) raises(DOMException); | 330 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 327 [Custom] void send(ArrayBufferView data) raises(DOMException); | 331 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 328 }; | 332 }; |
| 329 | 333 |
| 330 [Suppressed] | 334 [Suppressed] |
| 331 interface Entity {}; | 335 interface Entity {}; |
| OLD | NEW |