| 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 1e49a4f135459f671f9a655cd7ba0632c5a74a77..2c57c618dddf9f34ad5ac37eced6b9216a56544d 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/IDBIndex.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/IDBIndex.idl
|
| @@ -38,8 +38,12 @@ module storage {
|
| raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction)
|
| raises (IDBDatabaseException);
|
| + [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKeyRange key)
|
| + raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key)
|
| raises (IDBDatabaseException);
|
| + [CallWith=ScriptExecutionContext] IDBRequest getKey(in IDBKeyRange key)
|
| + raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest getKey(in IDBKey key)
|
| raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyRange range)
|
|
|