| OLD | NEW |
| 1 | 1 |
| 2 // This file introduces / supplements and forces Dart declarations. | 2 // This file introduces / supplements and forces Dart declarations. |
| 3 | 3 |
| 4 module core { | 4 module core { |
| 5 [Supplemental] | 5 [Supplemental] |
| 6 interface Document { | 6 interface Document { |
| 7 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); | 7 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); |
| 8 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); | 8 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); |
| 9 }; | 9 }; |
| 10 }; | 10 }; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 attribute EventListener onwaiting; | 82 attribute EventListener onwaiting; |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 [Supplemental] | 85 [Supplemental] |
| 86 interface WebGLContextEvent { | 86 interface WebGLContextEvent { |
| 87 [Suppressed] void initEvent([Optional] in DOMString eventTypeArg, | 87 [Suppressed] void initEvent([Optional] in DOMString eventTypeArg, |
| 88 [Optional] in boolean canBubbleArg, | 88 [Optional] in boolean canBubbleArg, |
| 89 [Optional] in boolean cancelableArg, | 89 [Optional] in boolean cancelableArg, |
| 90 [Optional] in DOMString statusMessageArg); | 90 [Optional] in DOMString statusMessageArg); |
| 91 }; | 91 }; |
| 92 |
| 93 [Suppressed] |
| 94 interface IceCallback {}; |
| 95 |
| 96 [Suppressed] |
| 97 interface PeerConnection00 {}; |
| 98 |
| 99 [Suppressed] |
| 100 interface WebKitPoint {}; |
| 92 }; | 101 }; |
| 93 | 102 |
| 94 module html { | 103 module html { |
| 95 [Supplemental] | 104 [Supplemental] |
| 96 interface WebGLRenderingContext { | 105 interface WebGLRenderingContext { |
| 97 | 106 |
| 98 //void compressedTexImage2D(in unsigned long target, in long level,
in unsigned long internalformat, in unsigned long width, in unsigned long height
, in long border, in unsigned long imageSize, const void* data); | 107 //void compressedTexImage2D(in unsigned long target, in long level,
in unsigned long internalformat, in unsigned long width, in unsigned long height
, in long border, in unsigned long imageSize, const void* data); |
| 99 //void compressedTexSubImage2D(in unsigned long target, in long leve
l, in long xoffset, in long yoffset, in unsigned long width, in unsigned long he
ight, in unsigned long format, in unsigned long imageSize, const void* data); | 108 //void compressedTexSubImage2D(in unsigned long target, in long leve
l, in long xoffset, in long yoffset, in unsigned long width, in unsigned long he
ight, in unsigned long format, in unsigned long imageSize, const void* data); |
| 100 | 109 |
| 101 [Custom] any getBufferParameter(in unsigned long target, in unsigned long pn
ame) raises(DOMException); | 110 [Custom] any getBufferParameter(in unsigned long target, in unsigned long pn
ame) raises(DOMException); |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 [Custom] void send(Blob data) raises(DOMException); | 346 [Custom] void send(Blob data) raises(DOMException); |
| 338 [Custom] void send(ArrayBuffer data) raises(DOMException); | 347 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 339 [Custom] void send(ArrayBufferView data) raises(DOMException); | 348 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 340 }; | 349 }; |
| 341 } | 350 } |
| 342 | 351 |
| 343 module core { | 352 module core { |
| 344 [Suppressed] | 353 [Suppressed] |
| 345 interface Entity {}; | 354 interface Entity {}; |
| 346 } | 355 } |
| OLD | NEW |