Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Side by Side Diff: client/dom/idl/dart/dart.idl

Issue 8889001: Implement typed array constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/dom/generated/wrapping_dom.js ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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>;
11 CanvasPixelArray implements sequence<int>; 11 CanvasPixelArray implements sequence<int>;
12
13 Float32Array implements sequence<double>;
14 Float64Array implements sequence<double>;
15 Int8Array implements sequence<int>;
16 Int16Array implements sequence<int>;
17 Int32Array implements sequence<int>;
18 Uint8Array implements sequence<int>;
19 Uint16Array implements sequence<int>;
20 Uint32Array implements sequence<int>;
12 } 21 }
13 22
14 module dom { 23 module dom {
15 // Force NodeSelector. WebKit defines these operations directly. 24 // Force NodeSelector. WebKit defines these operations directly.
16 interface NodeSelector { 25 interface NodeSelector {
17 Element querySelector(in DOMString selectors); 26 Element querySelector(in DOMString selectors);
18 NodeList querySelectorAll(in DOMString selectors); 27 NodeList querySelectorAll(in DOMString selectors);
19 }; 28 };
20 Document implements NodeSelector; 29 Document implements NodeSelector;
21 DocumentFragment implements NodeSelector; 30 DocumentFragment implements NodeSelector;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 }; 163 };
155 [Supplemental] 164 [Supplemental]
156 interface IDBIndex { 165 interface IDBIndex {
157 [DartName=getObject] IDBRequest get(in IDBKey key); 166 [DartName=getObject] IDBRequest get(in IDBKey key);
158 }; 167 };
159 [Supplemental] 168 [Supplemental]
160 interface IDBObjectStore { 169 interface IDBObjectStore {
161 [DartName=getObject] IDBRequest get(in IDBKey key); 170 [DartName=getObject] IDBRequest get(in IDBKey key);
162 }; 171 };
163 }; 172 };
OLDNEW
« no previous file with comments | « client/dom/generated/wrapping_dom.js ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698