| Index: third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| diff --git a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| index 8ced38cd1efa32ccb34f0628d3c6a928eb887fd2..9f9348531c3430d890d7cfd75e1bef5909f8500b 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| @@ -47,10 +47,17 @@ module storage {
|
| raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key)
|
| raises (IDBDatabaseException);
|
| - [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction)
|
| + [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] DOMString direction)
|
| raises (IDBDatabaseException);
|
| - [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, in [Optional] unsigned short direction)
|
| + [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, in [Optional] DOMString direction)
|
| raises (IDBDatabaseException);
|
| +
|
| + // FIXME: remove these when https://bugs.webkit.org/show_bug.cgi?id=85326 is fixed.
|
| + [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKeyRange range, in unsigned short direction)
|
| + raises (IDBDatabaseException);
|
| + [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, in unsigned short direction)
|
| + raises (IDBDatabaseException);
|
| +
|
| IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options)
|
| raises (IDBDatabaseException);
|
| IDBIndex index(in DOMString name)
|
|
|