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

Unified Diff: lib/dom/idl/dart/dart.idl

Issue 10540016: indexedDB work (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
Index: lib/dom/idl/dart/dart.idl
diff --git a/lib/dom/idl/dart/dart.idl b/lib/dom/idl/dart/dart.idl
index 128bdfc9fe2f307975cc31cc83f05b7b4d67c541..9dd16623daec3574e6d4a48b45799f932d7d3d44 100644
--- a/lib/dom/idl/dart/dart.idl
+++ b/lib/dom/idl/dart/dart.idl
@@ -200,6 +200,17 @@ module storage {
[DartName=continueFunction] void continue([Optional] in IDBKey key);
};
[Supplemental]
+ interface IDBDatabase {
+ // These variants are slated for removal from WebKit. Suppress to bring our
+ // API in line with the most recent spec.
+ [Suppressed, CallWith=ScriptExecutionContext] IDBTransaction transaction(in DOMStringList storeNames, in unsigned short mode)
+ raises (IDBDatabaseException);
+ [Suppressed, CallWith=ScriptExecutionContext] IDBTransaction transaction(in DOMString[] storeNames, in unsigned short mode)
+ raises (IDBDatabaseException);
+ [Suppressed, CallWith=ScriptExecutionContext] IDBTransaction transaction(in DOMString storeName, in unsigned short mode)
+ raises (IDBDatabaseException);
+ };
+ [Supplemental]
interface IDBIndex {
[DartName=getObject] IDBRequest get(in IDBKey key);
};

Powered by Google App Engine
This is Rietveld 408576698