| Index: modules/indexeddb/IDBFactory.idl
|
| diff --git a/modules/indexeddb/IDBFactory.idl b/modules/indexeddb/IDBFactory.idl
|
| index 7e0013cecb90b00028a84b562aeac1820b839506..7e9186296fc2393bc1146e92f4e86620e4d7f7d1 100644
|
| --- a/modules/indexeddb/IDBFactory.idl
|
| +++ b/modules/indexeddb/IDBFactory.idl
|
| @@ -24,11 +24,12 @@
|
| */
|
|
|
| [
|
| + GarbageCollected
|
| ] 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);
|
| };
|
|
|