| Index: lib/html/idl/dart/dart.idl
|
| diff --git a/lib/html/idl/dart/dart.idl b/lib/html/idl/dart/dart.idl
|
| index 6c8ed3006ef3e128e8762f8efc8dc80a9cce80a5..dfaf5debc688918e0e01cbdb01d143744e0c167e 100644
|
| --- a/lib/html/idl/dart/dart.idl
|
| +++ b/lib/html/idl/dart/dart.idl
|
| @@ -319,6 +319,14 @@ module storage {
|
| [DartName=getObject] IDBRequest get(in IDBKeyRange key);
|
| };
|
|
|
| + [Supplemental]
|
| + interface IDBKeyRange {
|
| + [DartName=only_] static IDBKeyRange only(in IDBKey value) raises (IDBDatabaseException);
|
| + [DartName=lowerBound_] static IDBKeyRange lowerBound(in IDBKey bound, [Optional] in boolean open) raises (IDBDatabaseException);
|
| + [DartName=upperBound_] static IDBKeyRange upperBound(in IDBKey bound, [Optional] in boolean open) raises (IDBDatabaseException);
|
| + [DartName=bound_] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, [Optional] in boolean lowerOpen, [Optional] in boolean upperOpen) raises (IDBDatabaseException);
|
| + };
|
| +
|
| interface EntrySync {
|
| // Native implementation is declared to return EntrySync.
|
| [Suppressed] DirectoryEntrySync getParent();
|
|
|