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

Unified Diff: lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
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:
Download patch
« no previous file with comments | « lib/dom/scripts/generator.py ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index 526f9b2445e338cd1764e351e5e98d835361b87b..dc46a833b1575de3a9324a528e98515ed2c86b1a 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -10701,9 +10701,13 @@ class _SQLResultSetRowListImpl implements SQLResultSetRowList native "*SQLResult
}
class _SQLTransactionImpl implements SQLTransaction native "*SQLTransaction" {
+
+ void executeSql(String sqlStatement, List arguments, [SQLStatementCallback callback, SQLStatementErrorCallback errorCallback]) native;
}
class _SQLTransactionSyncImpl implements SQLTransactionSync native "*SQLTransactionSync" {
+
+ _SQLResultSetImpl executeSql(String sqlStatement, List arguments) native;
}
class _SVGAElementImpl extends _SVGElementImpl implements SVGAElement native "*SVGAElement" {
@@ -28926,6 +28930,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
@@ -28949,6 +28956,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
« no previous file with comments | « lib/dom/scripts/generator.py ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698