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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 readonly attribute Element previousElementSibling; | 61 readonly attribute Element previousElementSibling; |
62 }; | 62 }; |
63 Element implements ElementTraversal; | 63 Element implements ElementTraversal; |
64 */ | 64 */ |
65 | 65 |
66 [Callback] | 66 [Callback] |
67 interface TimeoutHandler { | 67 interface TimeoutHandler { |
68 void handleEvent(); | 68 void handleEvent(); |
69 }; | 69 }; |
70 | 70 |
| 71 // FIXME(leafp): This is a temporary hack to get things running while |
| 72 // we are still generating _blink from the dart side idl files. |
| 73 // Once we are up and running generating dart:_blink in dartium |
| 74 // this should go away. |
| 75 [Supplemental] |
| 76 interface URL { |
| 77 [Suppressed] static DOMString createObjectURL(WebKitMediaSource source); |
| 78 }; |
| 79 |
71 [Supplemental] | 80 [Supplemental] |
72 interface CanvasRenderingContext2D { | 81 interface CanvasRenderingContext2D { |
73 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im
agedata); | 82 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im
agedata); |
74 | 83 |
75 [Suppressed] attribute boolean webkitImageSmoothingEnabled; | 84 [Suppressed] attribute boolean webkitImageSmoothingEnabled; |
76 }; | 85 }; |
77 | 86 |
78 [Supplemental] | 87 [Supplemental] |
79 interface ConsoleBase { | 88 interface ConsoleBase { |
80 [Suppressed] void assert(boolean condition); | 89 [Suppressed] void assert(boolean condition); |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 [Suppressed] | 365 [Suppressed] |
357 interface TextDecoder {}; | 366 interface TextDecoder {}; |
358 | 367 |
359 [Supplemental] | 368 [Supplemental] |
360 interface Window : EventTarget {}; | 369 interface Window : EventTarget {}; |
361 | 370 |
362 [Suppressed] | 371 [Suppressed] |
363 interface Promise {}; | 372 interface Promise {}; |
364 | 373 |
365 Element implements GlobalEventHandlers; | 374 Element implements GlobalEventHandlers; |
OLD | NEW |