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