| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 }; | 284 }; |
| 285 | 285 |
| 286 [Supplemental, Callback] // Add missing Callback attribute. | 286 [Supplemental, Callback] // Add missing Callback attribute. |
| 287 interface VoidCallback { | 287 interface VoidCallback { |
| 288 }; | 288 }; |
| 289 | 289 |
| 290 interface SVGNumber { | 290 interface SVGNumber { |
| 291 [StrictTypeChecking, Custom] attribute float value; | 291 [StrictTypeChecking, Custom] attribute float value; |
| 292 }; | 292 }; |
| 293 | 293 |
| 294 // TODO(antonm): get rid of it to follow V8 bindings. | 294 // Keep it in to generate Dart code, C++ implementation is filterd out in genera
tor. |
| 295 [ | 295 [ |
| 296 Callback | 296 Callback |
| 297 ] interface MutationCallback { | 297 ] interface MutationCallback { |
| 298 [Custom] boolean handleEvent(in MutationRecordArray mutations, in MutationObse
rver observer); | 298 [Custom] boolean handleEvent(in MutationRecordArray mutations, in MutationObse
rver observer); |
| 299 }; | 299 }; |
| 300 | 300 |
| 301 [Supplemental, | 301 [Supplemental, |
| 302 CustomConstructor, | 302 CustomConstructor, |
| 303 // Provide missing constructor signature. | 303 // Provide missing constructor signature. |
| 304 Constructor(MutationCallback callback)] | 304 Constructor(MutationCallback callback)] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 337 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
| 338 | 338 |
| 339 [Custom] void send(DOMString data) raises(DOMException); | 339 [Custom] void send(DOMString data) raises(DOMException); |
| 340 [Custom] void send(Blob data) raises(DOMException); | 340 [Custom] void send(Blob data) raises(DOMException); |
| 341 [Custom] void send(ArrayBuffer data) raises(DOMException); | 341 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 342 [Custom] void send(ArrayBufferView data) raises(DOMException); | 342 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 343 }; | 343 }; |
| 344 | 344 |
| 345 [Suppressed] | 345 [Suppressed] |
| 346 interface Entity {}; | 346 interface Entity {}; |
| OLD | NEW |