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

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

Issue 10207019: Generate DartDOMStringList binding. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months 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 | « no previous file | lib/dom/scripts/generator.py » ('j') | lib/dom/scripts/generator.py » ('J')
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>;
(...skipping 11 matching lines...) Expand all
22 // Is List<int> because inherits from Uint8Array: 22 // Is List<int> because inherits from Uint8Array:
23 // Uint8ClampedArray implements sequence<int>; 23 // Uint8ClampedArray implements sequence<int>;
24 } 24 }
25 25
26 module core { 26 module core {
27 [Supplemental] 27 [Supplemental]
28 interface Document { 28 interface Document {
29 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height); 29 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height);
30 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height); 30 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height);
31 }; 31 };
32
33 DOMStringList implements sequence<DOMString>;
32 }; 34 };
33 35
34 module dom { 36 module dom {
35 // Force NodeSelector. WebKit defines these operations directly. 37 // Force NodeSelector. WebKit defines these operations directly.
36 interface NodeSelector { 38 interface NodeSelector {
37 Element querySelector(in DOMString selectors); 39 Element querySelector(in DOMString selectors);
38 NodeList querySelectorAll(in DOMString selectors); 40 NodeList querySelectorAll(in DOMString selectors);
39 }; 41 };
40 Document implements NodeSelector; 42 Document implements NodeSelector;
41 DocumentFragment implements NodeSelector; 43 DocumentFragment implements NodeSelector;
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 [Supplemental, Callback] // Add missing Callback attribute. 245 [Supplemental, Callback] // Add missing Callback attribute.
244 interface VoidCallback { 246 interface VoidCallback {
245 }; 247 };
246 }; 248 };
247 249
248 module svg { 250 module svg {
249 interface SVGNumber { 251 interface SVGNumber {
250 [StrictTypeChecking, Custom] attribute double value; 252 [StrictTypeChecking, Custom] attribute double value;
251 }; 253 };
252 } 254 }
OLDNEW
« no previous file with comments | « no previous file | lib/dom/scripts/generator.py » ('j') | lib/dom/scripts/generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698