diff options
Diffstat (limited to 'WebCore/storage/IndexedDatabaseRequest.idl')
-rw-r--r-- | WebCore/storage/IndexedDatabaseRequest.idl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/WebCore/storage/IndexedDatabaseRequest.idl b/WebCore/storage/IndexedDatabaseRequest.idl index a87e033..502e804 100644 --- a/WebCore/storage/IndexedDatabaseRequest.idl +++ b/WebCore/storage/IndexedDatabaseRequest.idl @@ -28,9 +28,11 @@ module storage { interface [ Conditional=INDEXED_DATABASE ] IndexedDatabaseRequest { - // FIXME: This should no longer raise. - IDBRequest open(in DOMString name, in DOMString description) - raises(IDBDatabaseException); + [CallWith=ScriptExecutionContext] IDBRequest open(in DOMString name, in DOMString description); + IDBKeyRange makeSingleKeyRange(in SerializedScriptValue value); + IDBKeyRange makeLeftBoundKeyRange(in SerializedScriptValue bound, in [Optional] boolean open); + IDBKeyRange makeRightBoundKeyRange(in SerializedScriptValue bound, in [Optional] boolean open); + IDBKeyRange makeBoundKeyRange(in SerializedScriptValue left, in SerializedScriptValue right, in [Optional] boolean openLeft, in [Optional] boolean openRight); }; } |