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

Unified Diff: client/dom/scripts/dartgenerator.py

Issue 9405007: Support constructor generation for XSLTProcessor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 | client/tests/client/client.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/dartgenerator.py
diff --git a/client/dom/scripts/dartgenerator.py b/client/dom/scripts/dartgenerator.py
index 124199af8518a045137a0e0333c0a74b2f2f6b15..66a3efe2c5c7cec5d6d4ee6949426475cb62ebdf 100755
--- a/client/dom/scripts/dartgenerator.py
+++ b/client/dom/scripts/dartgenerator.py
@@ -2708,7 +2708,7 @@ class NativeImplementationGenerator(WrappingInterfaceGenerator):
# FIXME: add proper support for non-custom constructors.
if ('CustomConstructor' in self._interface.ext_attrs or
'V8CustomConstructor' in self._interface.ext_attrs or
- self._interface.id in ['FileReader', 'WebKitCSSMatrix']):
+ self._interface.id in ['FileReader', 'WebKitCSSMatrix', 'XSLTProcessor']):
podivilov 2012/02/15 17:31:03 Could you please check if 'Constructor' in interfa
antonm 2012/02/15 18:21:43 I will, but I don't aim for generic ctor support w
self._cpp_resolver_emitter.Emit(
' if (name == "$(INTERFACE_NAME)_constructor_Callback")\n'
' return Dart$(INTERFACE_NAME)Internal::constructorCallback;\n',
« no previous file with comments | « no previous file | client/tests/client/client.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698