| 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);
|
| };
|
|
|