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

Unified Diff: lib/dom/dart2js/dom_dart2js.dart

Issue 10877007: Map ObjectArray to List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « no previous file | lib/dom/dom.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | lib/dom/dom.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698