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

Unified Diff: sdk/lib/html/scripts/systemnative.py

Issue 11293292: Add constructors for SVG elements and remove static factory providers for html elements. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
Index: sdk/lib/html/scripts/systemnative.py
===================================================================
--- sdk/lib/html/scripts/systemnative.py (revision 14920)
+++ sdk/lib/html/scripts/systemnative.py (working copy)
@@ -208,10 +208,10 @@
ARGUMENTS=constructor_info.ParametersAsArgumentList(),
NATIVE_NAME=native_binding)
- def AddConstructors(self, constructors, factory_provider, class_name,
- base_class):
- super(DartiumBackend, self).AddConstructors(constructors, factory_provider,
- class_name, base_class)
+ def AddConstructors(self, constructors, factory_name, class_name,
+ base_class, factory_constructor_name=None):
+ super(DartiumBackend, self).AddConstructors(constructors, factory_name,
+ class_name, base_class, factory_constructor_name)
super_constructor = ''
if base_class and base_class != 'NativeFieldWrapperClass1':
« no previous file with comments | « sdk/lib/html/scripts/systemhtml.py ('k') | sdk/lib/html/templates/html/impl/factoryprovider_Elements.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698