| Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl
|
| index 12f3aea31f686dc7bf2fdcf123a25116706c937d..3febcf146ecd9ac0ad6fbbf006ee6d3d06697096 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl
|
| @@ -35,11 +35,14 @@
|
| readonly attribute unsigned long long version;
|
| readonly attribute DOMStringList objectStoreNames;
|
|
|
| - [RaisesException] IDBObjectStore createObjectStore(DOMString name, optional IDBObjectStoreParameters options);
|
| - [RaisesException] void deleteObjectStore(DOMString name);
|
| - [CallWith=ScriptState, RaisesException] IDBTransaction transaction((DOMString or sequence<DOMString> or DOMStringList) storeNames, optional IDBTransactionMode mode = "readonly");
|
| + [NewObject, CallWith=ScriptState, RaisesException] IDBTransaction transaction((DOMString or sequence<DOMString> or DOMStringList) storeNames,
|
| + optional IDBTransactionMode mode = "readonly");
|
| void close();
|
|
|
| + [NewObject, RaisesException] IDBObjectStore createObjectStore(DOMString name,
|
| + optional IDBObjectStoreParameters options);
|
| + [RaisesException] void deleteObjectStore(DOMString name);
|
| +
|
| attribute EventHandler onabort;
|
| attribute EventHandler onclose;
|
| attribute EventHandler onerror;
|
|
|