Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 | 59 [DartName=assertCondition] void assert(in boolean condition); |
| 60 [DartName=assert_] void assert(in boolean condition); | |
| 61 }; | 60 }; |
| 62 | 61 |
| 63 [Supplemental] | 62 [Supplemental] |
| 64 interface HTMLOptionsCollection { | 63 interface HTMLOptionsCollection { |
| 65 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon g before); | 64 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon g before); |
| 66 }; | 65 }; |
| 67 | 66 |
| 68 [Supplemental] | 67 [Supplemental] |
| 69 interface WebGLContextEvent { | 68 interface WebGLContextEvent { |
| 70 [Suppressed] void initEvent(in optional DOMString eventTypeArg, | 69 [Suppressed] void initEvent(in optional DOMString eventTypeArg, |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 172 [DartName=getObject] IDBRequest get(in IDBKey key); | 171 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 173 }; | 172 }; |
| 174 }; | 173 }; |
| 175 | 174 |
| 176 module html { | 175 module html { |
| 177 [Supplemental, Callback] // Add missing Callback attribute. | 176 [Supplemental, Callback] // Add missing Callback attribute. |
| 178 interface VoidCallback { | 177 interface VoidCallback { |
| 179 }; | 178 }; |
| 180 }; | 179 }; |
| 181 | 180 |
| 181 module svg { | |
| 182 [Supplemental] | |
| 183 interface SVGFECompositeElement { | |
| 184 [Suppressed] readonly attribute SVGAnimatedEnumeration operator; | |
|
sra1
2012/01/17 22:13:30
Is this necessary? 'operator' is a pseudo-keyword.
podivilov
2012/01/20 11:26:58
Reverted.
| |
| 185 }; | |
| 186 | |
| 187 [Supplemental] | |
| 188 interface SVGFEMorphologyElement { | |
| 189 [Suppressed] readonly attribute SVGAnimatedEnumeration operator; | |
| 190 }; | |
| 191 }; | |
| OLD | NEW |