| Index: third_party/WebCore/Modules/indexeddb/IDBIndex.idl
|
| diff --git a/third_party/WebCore/Modules/indexeddb/IDBIndex.idl b/third_party/WebCore/Modules/indexeddb/IDBIndex.idl
|
| index 2c57c618dddf9f34ad5ac37eced6b9216a56544d..b23e55acd632cf26e3a7a658524df3bb31e2d7b1 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/IDBIndex.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/IDBIndex.idl
|
| @@ -36,8 +36,12 @@ module storage {
|
|
|
| [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction)
|
| raises (IDBDatabaseException);
|
| + [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, in [Optional] unsigned short direction)
|
| + raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction)
|
| raises (IDBDatabaseException);
|
| + [CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in IDBKey key, in [Optional] unsigned short direction)
|
| + raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKeyRange key)
|
| raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key)
|
|
|