| 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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 | 465 |
| 466 [Supplemental] interface HTMLFormElement { | 466 [Supplemental] interface HTMLFormElement { |
| 467 void requestAutocomplete([Default=Undefined] optional Dictionary details); | 467 void requestAutocomplete([Default=Undefined] optional Dictionary details); |
| 468 [Suppressed] void requestAutocomplete(); | 468 [Suppressed] void requestAutocomplete(); |
| 469 }; | 469 }; |
| 470 | 470 |
| 471 [Supplemental] interface AudioBufferSourceNode { | 471 [Supplemental] interface AudioBufferSourceNode { |
| 472 [Suppressed] readonly attribute unsigned short playbackState; | 472 [Suppressed] readonly attribute unsigned short playbackState; |
| 473 }; | 473 }; |
| 474 | 474 |
| 475 [Supplemental] interface SVGElementInstanceList { | |
| 476 [Suppressed] readonly attribute unsigned long length; | |
| 477 }; | |
| 478 | |
| 479 [Supplemental] interface SpeechInputResult { | 475 [Supplemental] interface SpeechInputResult { |
| 480 [Suppressed] readonly attribute DOMString utterance; | 476 [Suppressed] readonly attribute DOMString utterance; |
| 481 [Suppressed] readonly attribute float confidence; | 477 [Suppressed] readonly attribute float confidence; |
| 482 }; | 478 }; |
| 483 | 479 |
| 484 [Supplemental] interface SpeechInputEvent : Event { | 480 [Supplemental] interface SpeechInputEvent : Event { |
| 485 [Suppressed] readonly attribute SpeechInputResultList results; | 481 [Suppressed] readonly attribute SpeechInputResultList results; |
| 486 }; | 482 }; |
| 487 | 483 |
| 488 [Supplemental] interface SpeechInputResultList { | |
| 489 [Suppressed] readonly attribute unsigned long length; | |
| 490 }; | |
| 491 | |
| 492 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode { | 484 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode { |
| 493 [Suppressed] readonly attribute AudioParam gain; | 485 [Suppressed] readonly attribute AudioParam gain; |
| 494 }; | 486 }; |
| 495 | 487 |
| 496 Element implements GlobalEventHandlers; | 488 Element implements GlobalEventHandlers; |
| OLD | NEW |