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

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

Issue 10332038: FileList is a sequence - make it have indexer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | « lib/dom/frog/dom_frog.dart ('k') | lib/html/dartium/html_dartium.dart » ('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 FileList implements sequence<File>;
6 HTMLCollection implements sequence<Node>;
7 MediaList implements sequence<DOMString>;
5 NamedNodeMap implements sequence<Node>; 8 NamedNodeMap implements sequence<Node>;
6 NodeList implements sequence<Node>; 9 NodeList implements sequence<Node>;
7 HTMLCollection implements sequence<Node>;
8 MediaList implements sequence<DOMString>;
9 StyleSheetList implements sequence<StyleSheet>; 10 StyleSheetList implements sequence<StyleSheet>;
10 TouchList implements sequence<Touch>; 11 TouchList implements sequence<Touch>;
11 12
12 Float32Array implements sequence<double>; 13 Float32Array implements sequence<double>;
13 Float64Array implements sequence<double>; 14 Float64Array implements sequence<double>;
14 Int8Array implements sequence<int>; 15 Int8Array implements sequence<int>;
15 Int16Array implements sequence<int>; 16 Int16Array implements sequence<int>;
16 Int32Array implements sequence<int>; 17 Int32Array implements sequence<int>;
17 Uint8Array implements sequence<int>; 18 Uint8Array implements sequence<int>;
18 // Ugliness ahead: we cannot analyse inheritance right now when deducing if 19 // Ugliness ahead: we cannot analyse inheritance right now when deducing if
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 [Supplemental, Callback] // Add missing Callback attribute. 238 [Supplemental, Callback] // Add missing Callback attribute.
238 interface VoidCallback { 239 interface VoidCallback {
239 }; 240 };
240 }; 241 };
241 242
242 module svg { 243 module svg {
243 interface SVGNumber { 244 interface SVGNumber {
244 [StrictTypeChecking, Custom] attribute double value; 245 [StrictTypeChecking, Custom] attribute double value;
245 }; 246 };
246 } 247 }
OLDNEW
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698