| 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 22 matching lines...) Expand all Loading... |
| 33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); | 33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); |
| 34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); | 34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); |
| 35 [Custom] Element createElement(DOMString tagName); | 35 [Custom] Element createElement(DOMString tagName); |
| 36 [Custom] Element createElement(DOMString localName, DOMString typeExtension); | 36 [Custom] Element createElement(DOMString localName, DOMString typeExtension); |
| 37 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa
me); | 37 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa
me); |
| 38 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa
me, DOMString typeExtension); | 38 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa
me, DOMString typeExtension); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 [Supplemental] | 41 [Supplemental] |
| 42 interface Node { | 42 interface Node { |
| 43 Node cloneNode([Default=Undefined] optional boolean deep); | 43 [Custom] Node cloneNode([Default=Undefined] optional boolean deep); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 [Supplemental] | 46 [Supplemental] |
| 47 interface ScriptProcessorNode { | 47 interface ScriptProcessorNode { |
| 48 [Suppressed] attribute EventListener onaudioprocess; | 48 [Suppressed] attribute EventListener onaudioprocess; |
| 49 [Custom] void _setEventListener(EventListener eventListener); | 49 [Custom] void _setEventListener(EventListener eventListener); |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 /* | 52 /* |
| 53 // TODO(vsm): How should this interact with the new ChildNode and | 53 // TODO(vsm): How should this interact with the new ChildNode and |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 // TextEncoder/TextDecoder | 344 // TextEncoder/TextDecoder |
| 345 [Suppressed] | 345 [Suppressed] |
| 346 interface TextEncoder {}; | 346 interface TextEncoder {}; |
| 347 | 347 |
| 348 [Suppressed] | 348 [Suppressed] |
| 349 interface TextDecoder {}; | 349 interface TextDecoder {}; |
| 350 | 350 |
| 351 [Supplemental] | 351 [Supplemental] |
| 352 interface Window : EventTarget {}; | 352 interface Window : EventTarget {}; |
| 353 | 353 |
| OLD | NEW |