| 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 default { | 4 module default { |
| 5 NamedNodeMap implements sequence<Node>; | 5 NamedNodeMap implements sequence<Node>; |
| 6 NodeList implements sequence<Node>; | 6 NodeList implements sequence<Node>; |
| 7 HTMLCollection implements sequence<Node>; | 7 HTMLCollection implements sequence<Node>; |
| 8 MediaList implements sequence<DOMString>; | 8 MediaList implements sequence<DOMString>; |
| 9 StyleSheetList implements sequence<StyleSheet>; | 9 StyleSheetList implements sequence<StyleSheet>; |
| 10 TouchList implements sequence<Touch>; | 10 TouchList implements sequence<Touch>; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 [Suppressed, StrictTypeChecking, Custom] void getUniform(); | 104 [Suppressed, StrictTypeChecking, Custom] void getUniform(); |
| 105 | 105 |
| 106 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D
OMException); | 106 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D
OMException); |
| 107 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); | 107 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); |
| 108 }; | 108 }; |
| 109 } | 109 } |
| 110 | 110 |
| 111 | 111 |
| 112 | 112 |
| 113 module canvas { | 113 module canvas { |
| 114 interface CanvasPixelArray { | |
| 115 int item(in int index); | |
| 116 }; | |
| 117 | |
| 118 // TODO(dstockwell): Define these manually. | 114 // TODO(dstockwell): Define these manually. |
| 119 [Supplemental] | 115 [Supplemental] |
| 120 interface Float32Array { | 116 interface Float32Array { |
| 121 [Suppressed] void set(); | 117 [Suppressed] void set(); |
| 122 }; | 118 }; |
| 123 [Supplemental] | 119 [Supplemental] |
| 124 interface Float64Array { | 120 interface Float64Array { |
| 125 [Suppressed] void set(); | 121 [Suppressed] void set(); |
| 126 }; | 122 }; |
| 127 [Supplemental] | 123 [Supplemental] |
| (...skipping 30 matching lines...) Expand all Loading... |
| 158 }; | 154 }; |
| 159 [Supplemental] | 155 [Supplemental] |
| 160 interface IDBIndex { | 156 interface IDBIndex { |
| 161 [DartName=getObject] IDBRequest get(in IDBKey key); | 157 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 162 }; | 158 }; |
| 163 [Supplemental] | 159 [Supplemental] |
| 164 interface IDBObjectStore { | 160 interface IDBObjectStore { |
| 165 [DartName=getObject] IDBRequest get(in IDBKey key); | 161 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 166 }; | 162 }; |
| 167 }; | 163 }; |
| OLD | NEW |