| Index: lib/dom/dart2js/dom_dart2js.dart
|
| diff --git a/lib/dom/dart2js/dom_dart2js.dart b/lib/dom/dart2js/dom_dart2js.dart
|
| index c991fc31643aeecddc86321840d1329d13b4f7c9..17b7c4ab12f656d745ca0e20f2f9214cbe685ba7 100644
|
| --- a/lib/dom/dart2js/dom_dart2js.dart
|
| +++ b/lib/dom/dart2js/dom_dart2js.dart
|
| @@ -6228,9 +6228,13 @@ class _SQLResultSetRowListJs extends _DOMTypeJs implements SQLResultSetRowList n
|
| }
|
|
|
| class _SQLTransactionJs extends _DOMTypeJs implements SQLTransaction native "*SQLTransaction" {
|
| +
|
| + void executeSql(String sqlStatement, List arguments, [SQLStatementCallback callback, SQLStatementErrorCallback errorCallback]) native;
|
| }
|
|
|
| class _SQLTransactionSyncJs extends _DOMTypeJs implements SQLTransactionSync native "*SQLTransactionSync" {
|
| +
|
| + _SQLResultSetJs executeSql(String sqlStatement, List arguments) native;
|
| }
|
|
|
| class _SVGAElementJs extends _SVGElementJs implements SVGAElement native "*SVGAElement" {
|
| @@ -19252,6 +19256,8 @@ typedef bool SQLStatementErrorCallback(SQLTransaction transaction, SQLError erro
|
| // WARNING: Do not edit - generated code.
|
|
|
| interface SQLTransaction {
|
| +
|
| + void executeSql(String sqlStatement, List arguments, [SQLStatementCallback callback, SQLStatementErrorCallback errorCallback]);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -19274,6 +19280,8 @@ typedef bool SQLTransactionErrorCallback(SQLError error);
|
| // WARNING: Do not edit - generated code.
|
|
|
| interface SQLTransactionSync {
|
| +
|
| + SQLResultSet executeSql(String sqlStatement, List arguments);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
|
|