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

Unified Diff: sdk/lib/html/templates/html/dart2js/impl_TableElement.darttemplate

Issue 11365019: Merging dart:html interfaces and implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing merged classes in dartium not compiling under dartc. 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/templates/html/dart2js/impl_TableElement.darttemplate
diff --git a/sdk/lib/html/templates/html/dart2js/impl_TableElement.darttemplate b/sdk/lib/html/templates/html/dart2js/impl_TableElement.darttemplate
index 5a9a49b8c67cc95c3fa42e9a64c2ac14e2b39838..aa8e769b83d490fee0e6a658a407526f2c703cc5 100644
--- a/sdk/lib/html/templates/html/dart2js/impl_TableElement.darttemplate
+++ b/sdk/lib/html/templates/html/dart2js/impl_TableElement.darttemplate
@@ -5,7 +5,7 @@
class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
$!MEMBERS
- _ElementImpl createTBody() {
+ Element createTBody() {
if (JS('bool', '!!#.createTBody', this)) {
return this._createTBody();
}
@@ -14,5 +14,5 @@ $!MEMBERS
return tbody;
}
- _ElementImpl _createTBody() native 'createTBody';
+ Element _createTBody() native 'createTBody';
}

Powered by Google App Engine
This is Rietveld 408576698