| 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 |
| 7 // typed arrays is in the IDL. |
| 8 [Custom] void decodeAudioData(in ArrayBuffer audioData, in AudioBufferCallback
successCallback, in AudioBufferCallback errorCallback); |
| 9 }; |
| 10 |
| 11 [Supplemental] |
| 12 interface WaveShaperNode { |
| 13 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 14 // typed arrays is in the IDL. |
| 15 [CustomSetter] attribute Float32Array curve; |
| 16 }; |
| 17 |
| 18 [Supplemental] |
| 19 interface AudioParam { |
| 20 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 21 // typed arrays is in the IDL. |
| 22 [Custom] void setValueCurveAtTime(in Float32Array values, in float time, in fl
oat duration); |
| 23 }; |
| 6 | 24 |
| 7 [Supplemental] | 25 [Supplemental] |
| 8 interface Document { | 26 interface Document { |
| 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 27 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
| 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 28 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
| 11 }; | 29 }; |
| 12 | 30 |
| 13 [Supplemental] | 31 [Supplemental] |
| 14 interface ScriptProcessorNode { | 32 interface ScriptProcessorNode { |
| 15 [Suppressed] attribute EventListener onaudioprocess; | 33 [Suppressed] attribute EventListener onaudioprocess; |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 [Suppressed] | 367 [Suppressed] |
| 350 interface InspectorFrontendHost {}; | 368 interface InspectorFrontendHost {}; |
| 351 | 369 |
| 352 | 370 |
| 353 [Suppressed] | 371 [Suppressed] |
| 354 interface JavaScriptCallFrame {}; | 372 interface JavaScriptCallFrame {}; |
| 355 | 373 |
| 356 | 374 |
| 357 [Suppressed] | 375 [Suppressed] |
| 358 interface Entity {}; | 376 interface Entity {}; |
| OLD | NEW |