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 [Callback] | |
vsm
2014/05/01 21:51:42
Did you mean to duplication this? There are two T
Leaf
2014/05/01 22:00:45
Done.
| |
72 interface TimeoutHandler { | |
73 void handleEvent(); | |
74 }; | |
75 | |
76 // FIXME(leafp): This is a temporary hack to get things running while | |
77 // we are still generating _blink from the dart side idl files. | |
78 // Once we are up and running generating dart:_blink in dartium | |
79 // this should go away. | |
80 [Supplemental] | |
81 interface URL { | |
82 [Suppressed] static DOMString createObjectURL(WebKitMediaSource source); | |
83 }; | |
84 | |
71 [Supplemental] | 85 [Supplemental] |
72 interface CanvasRenderingContext2D { | 86 interface CanvasRenderingContext2D { |
73 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im agedata); | 87 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im agedata); |
74 | 88 |
75 [Suppressed] attribute boolean webkitImageSmoothingEnabled; | 89 [Suppressed] attribute boolean webkitImageSmoothingEnabled; |
76 }; | 90 }; |
77 | 91 |
78 [Supplemental] | 92 [Supplemental] |
79 interface ConsoleBase { | 93 interface ConsoleBase { |
80 [Suppressed] void assert(boolean condition); | 94 [Suppressed] void assert(boolean condition); |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
356 [Suppressed] | 370 [Suppressed] |
357 interface TextDecoder {}; | 371 interface TextDecoder {}; |
358 | 372 |
359 [Supplemental] | 373 [Supplemental] |
360 interface Window : EventTarget {}; | 374 interface Window : EventTarget {}; |
361 | 375 |
362 [Suppressed] | 376 [Suppressed] |
363 interface Promise {}; | 377 interface Promise {}; |
364 | 378 |
365 Element implements GlobalEventHandlers; | 379 Element implements GlobalEventHandlers; |
OLD | NEW |