Index: Source/modules/indexeddb/IDBFactory.idl |
diff --git a/Source/modules/indexeddb/IDBFactory.idl b/Source/modules/indexeddb/IDBFactory.idl |
index 4bf4a5e80d44bed674fd35b285402bc9650b109f..7e9186296fc2393bc1146e92f4e86620e4d7f7d1 100644 |
--- a/Source/modules/indexeddb/IDBFactory.idl |
+++ b/Source/modules/indexeddb/IDBFactory.idl |
@@ -26,10 +26,10 @@ |
[ |
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); |
}; |