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

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

Issue 10027017: Auto-generate TimeoutHandler.dart. (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 | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/scripts/generator.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>;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 // Force ElementTraversal. WebKit defines these directly. 44 // Force ElementTraversal. WebKit defines these directly.
45 interface ElementTraversal { 45 interface ElementTraversal {
46 getter attribute unsigned long childElementCount; 46 getter attribute unsigned long childElementCount;
47 getter attribute Element firstElementChild; 47 getter attribute Element firstElementChild;
48 getter attribute Element lastElementChild; 48 getter attribute Element lastElementChild;
49 getter attribute Element nextElementSibling; 49 getter attribute Element nextElementSibling;
50 getter attribute Element previousElementSibling; 50 getter attribute Element previousElementSibling;
51 }; 51 };
52 Element implements ElementTraversal; 52 Element implements ElementTraversal;
53
54 [Callback]
55 interface TimeoutHandler {
56 void handleEvent();
57 };
53 }; 58 };
54 59
55 module html { 60 module html {
56 [Supplemental] 61 [Supplemental]
57 interface Console { 62 interface Console {
58 [Suppressed] void debug(); 63 [Suppressed] void debug();
59 [CallWith=ScriptArguments|CallStack] void debug(DOMObject arg); 64 [CallWith=ScriptArguments|CallStack] void debug(DOMObject arg);
60 [Suppressed] void error(); 65 [Suppressed] void error();
61 [CallWith=ScriptArguments|CallStack] void error(DOMObject arg); 66 [CallWith=ScriptArguments|CallStack] void error(DOMObject arg);
62 [Suppressed] void info(); 67 [Suppressed] void info();
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 [Supplemental, Callback] // Add missing Callback attribute. 225 [Supplemental, Callback] // Add missing Callback attribute.
221 interface VoidCallback { 226 interface VoidCallback {
222 }; 227 };
223 }; 228 };
224 229
225 module svg { 230 module svg {
226 interface SVGNumber { 231 interface SVGNumber {
227 [StrictTypeChecking, Custom] attribute double value; 232 [StrictTypeChecking, Custom] attribute double value;
228 }; 233 };
229 } 234 }
OLDNEW
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698