| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 interface IDBKeyRange { | 223 interface IDBKeyRange { |
| 224 [Suppressed] static IDBKeyRange only(in IDBKey value) | 224 [Suppressed] static IDBKeyRange only(in IDBKey value) |
| 225 raises (IDBDatabaseException); | 225 raises (IDBDatabaseException); |
| 226 [Suppressed] static IDBKeyRange lowerBound(in IDBKey bound, in optional bool
ean open) | 226 [Suppressed] static IDBKeyRange lowerBound(in IDBKey bound, in optional bool
ean open) |
| 227 raises (IDBDatabaseException); | 227 raises (IDBDatabaseException); |
| 228 [Suppressed] static IDBKeyRange upperBound(in IDBKey bound, in optional bool
ean open) | 228 [Suppressed] static IDBKeyRange upperBound(in IDBKey bound, in optional bool
ean open) |
| 229 raises (IDBDatabaseException); | 229 raises (IDBDatabaseException); |
| 230 [Suppressed] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in o
ptional boolean lowerOpen, optional boolean upperOpen) | 230 [Suppressed] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in o
ptional boolean lowerOpen, optional boolean upperOpen) |
| 231 raises (IDBDatabaseException); | 231 raises (IDBDatabaseException); |
| 232 }; | 232 }; |
| 233 |
| 234 interface EntrySync { |
| 235 // Native implementation is declared to return EntrySync. |
| 236 [Suppressed] DirectoryEntrySync getParent(); |
| 237 EntrySync getParent(); |
| 238 }; |
| 233 }; | 239 }; |
| 234 | 240 |
| 235 module html { | 241 module html { |
| 236 [Supplemental, Callback] // Add missing Callback attribute. | 242 [Supplemental, Callback] // Add missing Callback attribute. |
| 237 interface VoidCallback { | 243 interface VoidCallback { |
| 238 }; | 244 }; |
| 239 }; | 245 }; |
| 240 | 246 |
| 241 module svg { | 247 module svg { |
| 242 interface SVGNumber { | 248 interface SVGNumber { |
| 243 [StrictTypeChecking, Custom] attribute double value; | 249 [StrictTypeChecking, Custom] attribute double value; |
| 244 }; | 250 }; |
| 245 } | 251 } |
| OLD | NEW |