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

Unified Diff: lib/html/scripts/generator.py

Issue 11140043: Replace DOMStringList with List<String>. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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/html/dartium/html_dartium.dart ('k') | lib/html/templates/html/dart2js/impl_IDBDatabase.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/scripts/generator.py
===================================================================
--- lib/html/scripts/generator.py (revision 13673)
+++ lib/html/scripts/generator.py (working copy)
@@ -1004,7 +1004,6 @@
'CSSRule': TypeData(clazz='Interface', conversion_includes=['CSSImportRule']),
'DOMException': TypeData(clazz='Interface', native_type='DOMCoreException'),
- 'DOMStringList': TypeData(clazz='Interface', dart_type='List<String>', custom_to_native=True),
'DOMStringMap': TypeData(clazz='Interface', dart_type='Map<String, String>'),
'DOMWindow': TypeData(clazz='Interface', custom_to_dart=True),
'Document': TypeData(clazz='Interface', merged_interface='HTMLDocument'),
@@ -1025,6 +1024,8 @@
'ClientRectList': TypeData(clazz='ListLike', item_type='ClientRect'),
'CSSRuleList': TypeData(clazz='ListLike', item_type='CSSRule'),
'CSSValueList': TypeData(clazz='ListLike', item_type='CSSValue'),
+ 'DOMStringList': TypeData(clazz='ListLike', item_type='DOMString',
+ custom_to_native=True),
'EntryArray': TypeData(clazz='ListLike', item_type='Entry'),
'EntryArraySync': TypeData(clazz='ListLike', item_type='EntrySync'),
'FileList': TypeData(clazz='ListLike', item_type='File'),
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/templates/html/dart2js/impl_IDBDatabase.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698