| 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 // TODO(efortuna): Clean up these comments once we have dealt with the extra | 5 // TODO(efortuna): Clean up these comments once we have dealt with the extra |
| 6 // methods on these list-like classes. | 6 // methods on these list-like classes. |
| 7 ClientRectList implements sequence<ClientRect>; | 7 ClientRectList implements sequence<ClientRect>; |
| 8 CSSRuleList implements sequence<CSSRule>; | 8 CSSRuleList implements sequence<CSSRule>; |
| 9 CSSValueList implements sequence<CSSValue>; | 9 CSSValueList implements sequence<CSSValue>; |
| 10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field. | 10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field. |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 [Supplemental] | 312 [Supplemental] |
| 313 interface IDBIndex { | 313 interface IDBIndex { |
| 314 [DartName=getObject] IDBRequest get(in IDBKey key); | 314 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 315 }; | 315 }; |
| 316 [Supplemental] | 316 [Supplemental] |
| 317 interface IDBObjectStore { | 317 interface IDBObjectStore { |
| 318 [DartName=getObject] IDBRequest get(in IDBKey key); | 318 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 319 [DartName=getObject] IDBRequest get(in IDBKeyRange key); | 319 [DartName=getObject] IDBRequest get(in IDBKeyRange key); |
| 320 }; | 320 }; |
| 321 | 321 |
| 322 [Supplemental] |
| 323 interface IDBKeyRange { |
| 324 [DartName=only_] static IDBKeyRange only(in IDBKey value) raises (IDBDatabas
eException); |
| 325 [DartName=lowerBound_] static IDBKeyRange lowerBound(in IDBKey bound, [Optio
nal] in boolean open) raises (IDBDatabaseException); |
| 326 [DartName=upperBound_] static IDBKeyRange upperBound(in IDBKey bound, [Optio
nal] in boolean open) raises (IDBDatabaseException); |
| 327 [DartName=bound_] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper,
[Optional] in boolean lowerOpen, [Optional] in boolean upperOpen) raises (IDBDa
tabaseException); |
| 328 }; |
| 329 |
| 322 interface EntrySync { | 330 interface EntrySync { |
| 323 // Native implementation is declared to return EntrySync. | 331 // Native implementation is declared to return EntrySync. |
| 324 [Suppressed] DirectoryEntrySync getParent(); | 332 [Suppressed] DirectoryEntrySync getParent(); |
| 325 EntrySync getParent(); | 333 EntrySync getParent(); |
| 326 }; | 334 }; |
| 327 }; | 335 }; |
| 328 | 336 |
| 329 | 337 |
| 330 module html { | 338 module html { |
| 331 [Supplemental, | 339 [Supplemental, |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 // Suppress the default since it has non-standard return type and add | 395 // Suppress the default since it has non-standard return type and add |
| 388 // overrides. | 396 // overrides. |
| 389 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 397 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
| 390 [Custom] void send(DOMString data) raises(DOMException); | 398 [Custom] void send(DOMString data) raises(DOMException); |
| 391 [Custom] void send(Blob data) raises(DOMException); | 399 [Custom] void send(Blob data) raises(DOMException); |
| 392 [Custom] void send(ArrayBuffer data) raises(DOMException); | 400 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 393 [Custom] void send(ArrayBufferView data) raises(DOMException); | 401 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 394 }; | 402 }; |
| 395 } | 403 } |
| 396 | 404 |
| OLD | NEW |