| Index: Source/modules/indexeddb/IDBIndex.idl
|
| diff --git a/Source/modules/indexeddb/IDBIndex.idl b/Source/modules/indexeddb/IDBIndex.idl
|
| index 64802a9c0191abe76d482d4a56738f3dda2db383..3b7d75b58c9836fdd8c559cf54d68d3e814f23b0 100644
|
| --- a/Source/modules/indexeddb/IDBIndex.idl
|
| +++ b/Source/modules/indexeddb/IDBIndex.idl
|
| @@ -32,10 +32,10 @@
|
| readonly attribute boolean unique;
|
| readonly attribute boolean multiEntry;
|
|
|
| - [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction);
|
| - [CallWith=ExecutionContext, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction);
|
| + [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction);
|
| + [CallWith=ScriptState, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction);
|
|
|
| - [CallWith=ExecutionContext, RaisesException] IDBRequest get(any key);
|
| - [CallWith=ExecutionContext, RaisesException] IDBRequest getKey(any key);
|
| - [CallWith=ExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
| + [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
|
| + [CallWith=ScriptState, RaisesException] IDBRequest getKey(any key);
|
| + [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
| };
|
|
|