Index: Source/modules/indexeddb/IDBDatabase.idl |
diff --git a/Source/modules/indexeddb/IDBDatabase.idl b/Source/modules/indexeddb/IDBDatabase.idl |
index 36ab560e13039b7397aca8df5b207fde7bf5b6c5..17a3db0a37f87dd8f5bcdd8b6d453d5fa9d7ea9f 100644 |
--- a/Source/modules/indexeddb/IDBDatabase.idl |
+++ b/Source/modules/indexeddb/IDBDatabase.idl |
@@ -40,6 +40,7 @@ enum IDBTransactionMode { |
readonly attribute DOMString name; |
[CallWith=ScriptState] readonly attribute any version; |
readonly attribute DOMStringList objectStoreNames; |
+ // FIXME: |options| should be an IDL dictionary (IDBObjectStoreParameters) |
bashi
2014/11/14 02:19:53
IDBObjectStoreParameters is an IDL dictionary whic
|
[RaisesException] IDBObjectStore createObjectStore(DOMString name, optional Dictionary options); |
[RaisesException] void deleteObjectStore(DOMString name); |
// FIXME: should be union type http://crbug.com/240176 |