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

Unified Diff: lib/dom/idl/dart/dart.idl

Issue 10869056: SQLResultRowList.item converts row into map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase 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 | « lib/dom/dom.dart ('k') | lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/idl/dart/dart.idl
diff --git a/lib/dom/idl/dart/dart.idl b/lib/dom/idl/dart/dart.idl
index afd3171b03bc65f56a0064136c8e3b7fe930c9d8..6cc04885fd1be713b70749d820edcd8d16f6ad36 100644
--- a/lib/dom/idl/dart/dart.idl
+++ b/lib/dom/idl/dart/dart.idl
@@ -283,3 +283,13 @@ module core {
raises(DOMException);
};
}
+
+module storage {
+ [Supplemental]
+ interface SQLResultSetRowList {
+ // Change the return type to Dictionary so that rows are exposed in the Dart
+ // API as a Maps, with the appropriate conversion in JavaScript.
+ [Suppressed] DOMObject item(in unsigned long index);
+ [Custom] Dictionary item(in unsigned long index);
+ };
+}
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698