Index: tools/dom/scripts/systemhtml.py |
diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py |
index aa40a62e8dab5179ccf45eff0d253e3abc936dbe..91209fa7c95453a8eccdfb9c0c8559c217592236 100644 |
--- a/tools/dom/scripts/systemhtml.py |
+++ b/tools/dom/scripts/systemhtml.py |
@@ -601,10 +601,10 @@ class HtmlDartInterfaceGenerator(object): |
}} |
factory {0}._internalWrap() {{ |
- return new {0}._internal(); |
+ return new {0}.internal_(); |
}} |
- {0}._internal() : super._internal(); |
+ {0}.internal_() : super.internal_(); |
'''.format(class_name) |
""" |
@@ -621,10 +621,10 @@ class HtmlDartInterfaceGenerator(object): |
JsObject blink_jsObject = null; |
factory {0}._internalWrap() {{ |
- return new {0}._internal(); |
+ return new {0}.internal_(); |
}} |
- {0}._internal() {{ }} |
+ {0}.internal_() {{ }} |
{1}'''.format(class_name, js_interop_equivalence_op) |
# Change to use the synthesized class so we can construct with a mixin |