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

Unified Diff: tools/dom/scripts/systemhtml.py

Issue 1257733003: Change _internal from private so we work across library boundaries (Closed) Base URL: git@github.com:dart-lang/sdk.git@integration
Patch Set: Created 5 years, 5 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 | « sdk/lib/web_sql/dartium/web_sql_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « sdk/lib/web_sql/dartium/web_sql_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698