| Index: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.idl
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.idl b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.idl
|
| index 59d2ea6013891f7c58da0cb9abe87ecc1d5bd6d6..e583437ad37fa31481db3b99e9b270f1be8727bd 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.idl
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.idl
|
| @@ -41,17 +41,17 @@ enum IDBTransactionMode {
|
| ] interface IDBTransaction : EventTarget {
|
|
|
| // Properties
|
| - [Measure] readonly attribute DOMStringList objectStoreNames;
|
| - readonly attribute IDBTransactionMode mode;
|
| - readonly attribute IDBDatabase db;
|
| - readonly attribute DOMException error;
|
| + [MeasureAs=IndexedDB] readonly attribute DOMStringList objectStoreNames;
|
| + [MeasureAs=IndexedDB] readonly attribute IDBTransactionMode mode;
|
| + [MeasureAs=IndexedDB] readonly attribute IDBDatabase db;
|
| + [MeasureAs=IndexedDB] readonly attribute DOMException error;
|
|
|
| // Methods
|
| - [RaisesException] IDBObjectStore objectStore (DOMString name);
|
| - [RaisesException] void abort ();
|
| + [MeasureAs=IndexedDB, RaisesException] IDBObjectStore objectStore (DOMString name);
|
| + [MeasureAs=IndexedDB, RaisesException] void abort ();
|
|
|
| // Events
|
| - attribute EventHandler onabort;
|
| - attribute EventHandler oncomplete;
|
| - attribute EventHandler onerror;
|
| + [MeasureAs=IndexedDB] attribute EventHandler onabort;
|
| + [MeasureAs=IndexedDB] attribute EventHandler oncomplete;
|
| + [MeasureAs=IndexedDB] attribute EventHandler onerror;
|
| };
|
|
|