| Index: modules/indexeddb/IDBObjectStore.idl
|
| diff --git a/modules/indexeddb/IDBObjectStore.idl b/modules/indexeddb/IDBObjectStore.idl
|
| index a22fc74ad63970e7c21d9859decbc0a27cdeb33a..2afdfe4ab7b65b920baa1bd956dda0360f6d5439 100644
|
| --- a/modules/indexeddb/IDBObjectStore.idl
|
| +++ b/modules/indexeddb/IDBObjectStore.idl
|
| @@ -50,8 +50,8 @@ enum IDBCursorDirection {
|
| [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = "next");
|
| [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
|
| // FIXME: should be union type http://crbug.com/240176
|
| - [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional Dictionary options);
|
| - [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional Dictionary options);
|
| + [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional IDBIndexParameters options);
|
| + [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional IDBIndexParameters options);
|
| [RaisesException] IDBIndex index(DOMString name);
|
| [RaisesException] void deleteIndex(DOMString name);
|
| [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
|
|