| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 }; | 478 }; |
| 479 | 479 |
| 480 [Supplemental] interface SpeechInputEvent : Event { | 480 [Supplemental] interface SpeechInputEvent : Event { |
| 481 [Suppressed] readonly attribute SpeechInputResultList results; | 481 [Suppressed] readonly attribute SpeechInputResultList results; |
| 482 }; | 482 }; |
| 483 | 483 |
| 484 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode { | 484 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode { |
| 485 [Suppressed] readonly attribute AudioParam gain; | 485 [Suppressed] readonly attribute AudioParam gain; |
| 486 }; | 486 }; |
| 487 | 487 |
| 488 [Supplemental] | |
| 489 interface CSSStyleDeclaration { | |
| 490 [Supplemental] boolean __propertyQuery__(DOMString name); | |
| 491 }; | |
| 492 | |
| 493 Element implements GlobalEventHandlers; | 488 Element implements GlobalEventHandlers; |
| OLD | NEW |