Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1158)

Unified Diff: modules/indexeddb/IDBTransaction.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « modules/indexeddb/IDBRequest.idl ('k') | modules/indexeddb/IDBVersionChangeEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/indexeddb/IDBTransaction.idl
diff --git a/modules/indexeddb/IDBTransaction.idl b/modules/indexeddb/IDBTransaction.idl
index 8c86f14fdfc765af82f59621756cf166bbcefe6c..7f567590b79b3cd2971923a045bdaa121d7e9bdf 100644
--- a/modules/indexeddb/IDBTransaction.idl
+++ b/modules/indexeddb/IDBTransaction.idl
@@ -24,22 +24,27 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// FIXME: de-duplicate this when crbug.com/390758 is fixed.
+// https://w3c.github.io/IndexedDB/#idl-def-IDBTransactionMode
+
enum IDBTransactionMode {
"readonly",
"readwrite",
"versionchange"
};
+// https://w3c.github.io/IndexedDB/#idl-def-IDBTransaction
+
[
+ Exposed=(Window,Worker),
ActiveDOMObject,
GarbageCollected
] interface IDBTransaction : EventTarget {
// Properties
+ [RuntimeEnabled=IndexedDBExperimental, Measure] readonly attribute DOMStringList objectStoreNames;
readonly attribute IDBTransactionMode mode;
readonly attribute IDBDatabase db;
- readonly attribute DOMError error;
+ [Measure] readonly attribute DOMError error;
// Methods
[RaisesException] IDBObjectStore objectStore (DOMString name);
« no previous file with comments | « modules/indexeddb/IDBRequest.idl ('k') | modules/indexeddb/IDBVersionChangeEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698