| Index: modules/indexeddb/IDBObjectStore.idl
|
| diff --git a/modules/indexeddb/IDBObjectStore.idl b/modules/indexeddb/IDBObjectStore.idl
|
| index a3ca01d217f4567468abd4ccb488dd1ce787ebca..9f7a6b63f95bbd79ae51a46f4e03e6fe738897cd 100644
|
| --- a/modules/indexeddb/IDBObjectStore.idl
|
| +++ b/modules/indexeddb/IDBObjectStore.idl
|
| @@ -33,14 +33,15 @@
|
|
|
| [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(any key);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest clear();
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest get(any key);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any key, [Default=NullString] optional DOMString direction);
|
| + [CallWith=ExecutionContext, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest clear();
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest get(any key);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction);
|
| + [CallWith=ExecutionContext, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, [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);
|
| + [CallWith=ExecutionContext, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional Dictionary options);
|
| + [CallWith=ExecutionContext, 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 any key);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
| };
|
|
|