| OLD | NEW |
| 1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
| 2 | 2 |
| 3 [DartSupplemental, | 3 [DartSupplemental, |
| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 [DartName=inch] readonly attribute double? in; | 456 [DartName=inch] readonly attribute double? in; |
| 457 }; | 457 }; |
| 458 | 458 |
| 459 [DartSupplemental] | 459 [DartSupplemental] |
| 460 interface RTCPeerConnection { | 460 interface RTCPeerConnection { |
| 461 [DartSuppress] Promise<void> setLocalDescription(RTCSessionDescriptionInit d
escription); | 461 [DartSuppress] Promise<void> setLocalDescription(RTCSessionDescriptionInit d
escription); |
| 462 [DartSuppress] Promise<void> setRemoteDescription(RTCSessionDescriptionInit
description); | 462 [DartSuppress] Promise<void> setRemoteDescription(RTCSessionDescriptionInit
description); |
| 463 }; | 463 }; |
| 464 | 464 |
| 465 [DartSuppress] | 465 [DartSuppress] |
| 466 interface DragEvent {}; | |
| 467 | |
| 468 [DartSuppress] | |
| 469 interface InputEvent {}; | 466 interface InputEvent {}; |
| 470 | 467 |
| 471 Element implements GlobalEventHandlers; | 468 Element implements GlobalEventHandlers; |
| 472 | 469 |
| 473 | 470 |
| 474 // This only exists in Safari, and is deprecated there. But include it anyway | 471 // This only exists in Safari, and is deprecated there. But include it anyway |
| 475 // because otherwise iterating CSSRules in Safari can yield unknown JS objects. | 472 // because otherwise iterating CSSRules in Safari can yield unknown JS objects. |
| 476 interface CSSCharsetRule : CSSRule { | 473 interface CSSCharsetRule : CSSRule { |
| 477 [MeasureAs=CSSCharsetRuleEncoding] attribute DOMString encoding; | 474 [MeasureAs=CSSCharsetRuleEncoding] attribute DOMString encoding; |
| 478 }; | 475 }; |
| OLD | NEW |