| Index: modules/indexeddb/IDBObjectStore.idl
|
| diff --git a/modules/indexeddb/IDBObjectStore.idl b/modules/indexeddb/IDBObjectStore.idl
|
| index d3e4616ca2891722be11cb2a7fce6447fc20325c..a3ca01d217f4567468abd4ccb488dd1ce787ebca 100644
|
| --- a/modules/indexeddb/IDBObjectStore.idl
|
| +++ b/modules/indexeddb/IDBObjectStore.idl
|
| @@ -33,18 +33,14 @@
|
|
|
| [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=Undefined] optional any key);
|
| [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=Undefined] optional any key);
|
| - [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(IDBKeyRange? keyRange);
|
| [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key);
|
| [CallWith=ScriptExecutionContext, RaisesException] IDBRequest clear();
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest get(IDBKeyRange? key);
|
| [CallWith=ScriptExecutionContext, RaisesException] IDBRequest get(any key);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional IDBKeyRange? range, [Default=NullString] optional DOMString direction);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest openCursor(any key, [Default=NullString] optional DOMString direction);
|
| + [CallWith=ScriptExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any key, [Default=NullString] optional DOMString direction);
|
|
|
| [CallWith=ScriptExecutionContext, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional Dictionary options);
|
| [CallWith=ScriptExecutionContext, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional Dictionary options);
|
| [RaisesException] IDBIndex index(DOMString name);
|
| [RaisesException] void deleteIndex(DOMString name);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional IDBKeyRange? range);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest count(any key);
|
| + [CallWith=ScriptExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
| };
|
|
|