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

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

Issue 9125011: Fix for Issue 1075 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 | « client/dom/generated/wrapping_dom_externs.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>;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 [Suppressed] void error(); 49 [Suppressed] void error();
50 void error(DOMObject arg); 50 void error(DOMObject arg);
51 [Suppressed] void info(); 51 [Suppressed] void info();
52 void info(DOMObject arg); 52 void info(DOMObject arg);
53 [Suppressed] void log(); 53 [Suppressed] void log();
54 void log(DOMObject arg); 54 void log(DOMObject arg);
55 [Suppressed] void warn(); 55 [Suppressed] void warn();
56 void warn(DOMObject arg); 56 void warn(DOMObject arg);
57 [Suppressed] void trace(); 57 [Suppressed] void trace();
58 void trace(DOMObject arg); 58 void trace(DOMObject arg);
59
60 [DartName=assert_] void assert(in boolean condition);
59 }; 61 };
60 62
61 [Supplemental] 63 [Supplemental]
62 interface HTMLOptionsCollection { 64 interface HTMLOptionsCollection {
63 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon g before); 65 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon g before);
64 }; 66 };
65 67
66 [Supplemental] 68 [Supplemental]
67 interface WebGLContextEvent { 69 interface WebGLContextEvent {
68 [Suppressed] void initEvent(in optional DOMString eventTypeArg, 70 [Suppressed] void initEvent(in optional DOMString eventTypeArg,
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 [DartName=getObject] IDBRequest get(in IDBKey key); 172 [DartName=getObject] IDBRequest get(in IDBKey key);
171 }; 173 };
172 }; 174 };
173 175
174 module html { 176 module html {
175 [Supplemental, Callback] // Add missing Callback attribute. 177 [Supplemental, Callback] // Add missing Callback attribute.
176 interface VoidCallback { 178 interface VoidCallback {
177 }; 179 };
178 }; 180 };
179 181
OLDNEW
« no previous file with comments | « client/dom/generated/wrapping_dom_externs.js ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698