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

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

Issue 10821012: Autogenerate additional arguments for fanky methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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
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>; 5 FileList implements sequence<File>;
6 HTMLCollection implements sequence<Node>; 6 HTMLCollection implements sequence<Node>;
7 MediaList implements sequence<DOMString>; 7 MediaList implements sequence<DOMString>;
8 NamedNodeMap implements sequence<Node>; 8 NamedNodeMap implements sequence<Node>;
9 NodeList implements sequence<Node>; 9 NodeList implements sequence<Node>;
10 StyleSheetList implements sequence<StyleSheet>; 10 StyleSheetList implements sequence<StyleSheet>;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 [Callback] 47 [Callback]
48 interface TimeoutHandler { 48 interface TimeoutHandler {
49 void handleEvent(); 49 void handleEvent();
50 }; 50 };
51 }; 51 };
52 52
53 module html { 53 module html {
54 [Supplemental] 54 [Supplemental]
55 interface Console { 55 interface Console {
56 [Suppressed] void debug();
57 [CallWith=ScriptArguments|CallStack] void debug(DOMObject arg);
58 [Suppressed] void error();
59 [CallWith=ScriptArguments|CallStack] void error(DOMObject arg);
60 [Suppressed] void info();
61 [CallWith=ScriptArguments|CallStack] void info(DOMObject arg);
62 [Suppressed] void log();
63 [CallWith=ScriptArguments|CallStack] void log(DOMObject arg);
64 [Suppressed] void warn();
65 [CallWith=ScriptArguments|CallStack] void warn(DOMObject arg);
66 [Suppressed] void trace();
67 [CallWith=ScriptArguments|CallStack] void trace(DOMObject arg);
68 [Suppressed] void assert(in boolean condition); 56 [Suppressed] void assert(in boolean condition);
69 [CallWith=ScriptArguments|CallStack] void assertCondition(boolean condition, DOMObject arg); 57 [CallWith=ScriptArguments|CallStack] void assertCondition(boolean condition) ;
70 [Suppressed] void timeEnd(in DOMString title);
71 [CallWith=ScriptArguments|CallStack] void timeEnd(DOMString title, DOMObject arg);
72 [Suppressed] void timeStamp();
73 [CallWith=ScriptArguments|CallStack] void timeStamp(DOMObject arg);
74 [Suppressed] void group();
75 [CallWith=ScriptArguments|CallStack] void group(DOMObject arg);
76 [Suppressed] void groupCollapsed();
77 [CallWith=ScriptArguments|CallStack] void groupCollapsed(DOMObject arg);
78 }; 58 };
79 59
80 [Supplemental] 60 [Supplemental]
81 interface HTMLOptionsCollection { 61 interface HTMLOptionsCollection {
82 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before); 62 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before);
83 }; 63 };
84 64
85 [Supplemental] 65 [Supplemental]
86 interface ImageData { 66 interface ImageData {
87 readonly attribute Uint8ClampedArray data; 67 readonly attribute Uint8ClampedArray data;
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 CustomConstructor, 270 CustomConstructor,
291 // Provide missing constructor signature. 271 // Provide missing constructor signature.
292 Constructor(MutationCallback callback)] 272 Constructor(MutationCallback callback)]
293 interface MutationObserver { 273 interface MutationObserver {
294 // Rename 'observe' so we can define a new 'observe' API that calls the 274 // Rename 'observe' so we can define a new 'observe' API that calls the
295 // original. 275 // original.
296 [DartName=_observe] void observe(in Node target, in Dictionary options) 276 [DartName=_observe] void observe(in Node target, in Dictionary options)
297 raises(DOMException); 277 raises(DOMException);
298 }; 278 };
299 } 279 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698