| Index: Source/modules/indexeddb/IDBFactory.idl
|
| diff --git a/Source/modules/indexeddb/IDBFactory.idl b/Source/modules/indexeddb/IDBFactory.idl
|
| index 1a851bef61e918ec50ada4ba5a2ac3f9efc21efb..e1f8038d2dd1c030824d103477412e2434f674c6 100644
|
| --- a/Source/modules/indexeddb/IDBFactory.idl
|
| +++ b/Source/modules/indexeddb/IDBFactory.idl
|
| @@ -26,10 +26,10 @@
|
| [
|
| WillBeGarbageCollected
|
| ] interface IDBFactory {
|
| - [CallWith=ExecutionContext, ImplementedAs=getDatabaseNames, RaisesException] IDBRequest webkitGetDatabaseNames();
|
| + [CallWith=ScriptState, ImplementedAs=getDatabaseNames, RaisesException] IDBRequest webkitGetDatabaseNames();
|
|
|
| - [CallWith=ExecutionContext, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
|
| - [CallWith=ExecutionContext, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
|
| + [CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
|
| + [CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
|
|
|
| - [CallWith=ExecutionContext, RaisesException] short cmp(any first, any second);
|
| + [CallWith=ScriptState, RaisesException] short cmp(any first, any second);
|
| };
|
|
|