| 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 |
| 11 [Supplemental] | 11 [Supplemental] |
| 12 interface WaveShaperNode { | 12 interface WaveShaperNode { |
| 13 // TODO(ager): Auto-generate this custom method when the info about retaining | 13 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 14 // typed arrays is in the IDL. | 14 // typed arrays is in the IDL. |
| 15 [CustomSetter] attribute Float32Array curve; | 15 [CustomSetter] attribute Float32Array curve; |
| 16 }; | 16 }; |
| 17 | 17 |
| 18 [Supplemental] | 18 [Supplemental] |
| 19 interface AudioParam { | 19 interface AudioParam { |
| 20 // TODO(ager): Auto-generate this custom method when the info about retaining | 20 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 21 // typed arrays is in the IDL. | 21 // typed arrays is in the IDL. |
| 22 [Custom] void setValueCurveAtTime(Float32Array values, float time, float durat
ion); | 22 [Custom] void setValueCurveAtTime(Float32Array values, float time, float durat
ion); |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 [Supplemental] | 25 [Supplemental] |
| 26 interface Clipboard { |
| 27 [Suppressed] void setDragImage(HTMLImageElement image, long x, long y); |
| 28 [Custom] void setDragImage(Element element, long x, long y); |
| 29 }; |
| 30 |
| 31 [Supplemental] |
| 26 interface Document { | 32 interface Document { |
| 27 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); | 33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); |
| 28 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); | 34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); |
| 29 }; | 35 }; |
| 30 | 36 |
| 31 [Supplemental] | 37 [Supplemental] |
| 32 interface ScriptProcessorNode { | 38 interface ScriptProcessorNode { |
| 33 [Suppressed] attribute EventListener onaudioprocess; | 39 [Suppressed] attribute EventListener onaudioprocess; |
| 34 [Custom] void _setEventListener(EventListener eventListener); | 40 [Custom] void _setEventListener(EventListener eventListener); |
| 35 }; | 41 }; |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 [Suppressed] | 298 [Suppressed] |
| 293 interface InspectorFrontendHost {}; | 299 interface InspectorFrontendHost {}; |
| 294 | 300 |
| 295 | 301 |
| 296 [Suppressed] | 302 [Suppressed] |
| 297 interface JavaScriptCallFrame {}; | 303 interface JavaScriptCallFrame {}; |
| 298 | 304 |
| 299 | 305 |
| 300 [Suppressed] | 306 [Suppressed] |
| 301 interface Entity {}; | 307 interface Entity {}; |
| OLD | NEW |