| 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 97a9062ef845120823a2b1b530e1008501f16dc7..d3a8af62a98d9ce5ce9ee318067c9d49d0970de8 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| @@ -29,7 +29,7 @@ module storage {
|
| Conditional=INDEXED_DATABASE
|
| ] IDBObjectStore {
|
| readonly attribute [TreatReturnedNullStringAs=Null] DOMString name;
|
| - readonly attribute IDBAny keyPath;
|
| + readonly attribute [ImplementedAs=keyPathAny] IDBAny keyPath;
|
| readonly attribute DOMStringList indexNames;
|
| readonly attribute IDBTransaction transaction;
|
| readonly attribute boolean autoIncrement;
|
| @@ -59,9 +59,9 @@ module storage {
|
| [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)
|
| + [CallWith=ScriptExecutionContext] IDBIndex createIndex(in DOMString name, in DOMString[] keyPath, in [Optional] Dictionary options)
|
| raises (IDBDatabaseException);
|
| - IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options)
|
| + [CallWith=ScriptExecutionContext] IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options)
|
| raises (IDBDatabaseException);
|
| IDBIndex index(in DOMString name)
|
| raises (IDBDatabaseException);
|
|
|