| 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 // TODO(ager): Auto-generate this custom method when the info about retaining | 6 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 7 // typed arrays is in the IDL. | 7 // typed arrays is in the IDL. |
| 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe
ssCallback, AudioBufferCallback errorCallback); | 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe
ssCallback, AudioBufferCallback errorCallback); |
| 9 }; | 9 }; |
| 10 | 10 |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 [CustomSetter] attribute DOMString port; | 331 [CustomSetter] attribute DOMString port; |
| 332 [CustomSetter] attribute DOMString pathname; | 332 [CustomSetter] attribute DOMString pathname; |
| 333 [CustomSetter] attribute DOMString search; | 333 [CustomSetter] attribute DOMString search; |
| 334 [CustomSetter] attribute DOMString hash; | 334 [CustomSetter] attribute DOMString hash; |
| 335 }; | 335 }; |
| 336 | 336 |
| 337 | 337 |
| 338 [Supplemental] | 338 [Supplemental] |
| 339 interface Window : EventTarget {}; | 339 interface Window : EventTarget {}; |
| 340 | 340 |
| 341 [Supplemental] | |
| 342 interface AbstractWorker : EventTarget {}; | |
| OLD | NEW |