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 9f9348531c3430d890d7cfd75e1bef5909f8500b..489f678ebf713bff828bb0d5fa30e8ca0c3c558e 100644 |
--- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl |
+++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl |
@@ -29,9 +29,10 @@ module storage { |
Conditional=INDEXED_DATABASE |
] IDBObjectStore { |
readonly attribute [TreatReturnedNullStringAs=Null] DOMString name; |
- readonly attribute [TreatReturnedNullStringAs=Null] DOMString keyPath; |
+ readonly attribute IDBAny keyPath; |
readonly attribute DOMStringList indexNames; |
readonly attribute IDBTransaction transaction; |
+ readonly attribute boolean autoIncrement; |
[CallWith=ScriptExecutionContext] IDBRequest put(in SerializedScriptValue value, in [Optional] IDBKey key) |
raises (IDBDatabaseException); |
@@ -58,6 +59,8 @@ 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) |
+ raises (IDBDatabaseException); |
IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options) |
raises (IDBDatabaseException); |
IDBIndex index(in DOMString name) |