| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index bf35306cab4347117001e7372fec6a16eeb30eb9..48a2c4d46ce16d3239bed90c2fa7d27319c37d65 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -14317,6 +14317,8 @@ class _SQLResultSetRowListImpl extends NativeFieldWrapperClass1 implements SQLRe
|
|
|
| class _SQLTransactionImpl extends NativeFieldWrapperClass1 implements SQLTransaction {
|
|
|
| + void executeSql(String sqlStatement, List arguments, [SQLStatementCallback callback, SQLStatementErrorCallback errorCallback]) native "SQLTransaction_executeSql_Callback";
|
| +
|
| }
|
| // 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
|
| @@ -14326,6 +14328,8 @@ class _SQLTransactionImpl extends NativeFieldWrapperClass1 implements SQLTransac
|
|
|
| class _SQLTransactionSyncImpl extends NativeFieldWrapperClass1 implements SQLTransactionSync {
|
|
|
| + SQLResultSet executeSql(String sqlStatement, List arguments) native "SQLTransactionSync_executeSql_Callback";
|
| +
|
| }
|
| // 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
|
| @@ -32357,6 +32361,9 @@ typedef bool SQLStatementErrorCallback(SQLTransaction transaction, SQLError erro
|
|
|
| /// @domName SQLTransaction
|
| interface SQLTransaction {
|
| +
|
| + /** @domName SQLTransaction.executeSql */
|
| + 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
|
| @@ -32380,6 +32387,9 @@ typedef bool SQLTransactionErrorCallback(SQLError error);
|
|
|
| /// @domName SQLTransactionSync
|
| interface SQLTransactionSync {
|
| +
|
| + /** @domName SQLTransactionSync.executeSql */
|
| + 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
|
|
|