Chromium Code Reviews| 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 [Custom] void decodeAudioData(in ArrayBuffer audioData, in AudioBufferCallback successCallback, in AudioBufferCallback errorCallback) | |
|
Anton Muhin
2013/04/18 16:13:40
please, TODO that those custom methods should be a
| |
| 7 raises(DOMException); | |
| 8 }; | |
| 9 | |
| 10 [ Supplemental ] | |
|
Anton Muhin
2013/04/18 16:13:40
nit: no spaces around Supplemental.
| |
| 11 interface WaveShaperNode { | |
| 12 [CustomSetter] attribute Float32Array curve; | |
| 13 }; | |
| 14 | |
| 15 [ Supplemental ] | |
| 16 interface AudioParam { | |
| 17 [Custom] void setValueCurveAtTime(in Float32Array values, in float time, in fl oat duration); | |
| 18 }; | |
| 6 | 19 |
| 7 [Supplemental] | 20 [Supplemental] |
| 8 interface Document { | 21 interface Document { |
| 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); | 22 [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); | 23 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); |
| 11 }; | 24 }; |
| 12 | 25 |
| 13 [Supplemental] | 26 [Supplemental] |
| 14 interface ScriptProcessorNode { | 27 interface ScriptProcessorNode { |
| 15 [Suppressed] attribute EventListener onaudioprocess; | 28 [Suppressed] attribute EventListener onaudioprocess; |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 373 [Suppressed] | 386 [Suppressed] |
| 374 interface ScriptProfile {}; | 387 interface ScriptProfile {}; |
| 375 | 388 |
| 376 | 389 |
| 377 [Suppressed] | 390 [Suppressed] |
| 378 interface ScriptProfileNode {}; | 391 interface ScriptProfileNode {}; |
| 379 | 392 |
| 380 | 393 |
| 381 [Suppressed] | 394 [Suppressed] |
| 382 interface Entity {}; | 395 interface Entity {}; |
| OLD | NEW |