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

Unified Diff: lib/html/templates/html/dart2js/impl_ElementEvents.darttemplate

Issue 11365019: Merging dart:html interfaces and implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor cleanup. 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: lib/html/templates/html/dart2js/impl_ElementEvents.darttemplate
diff --git a/lib/html/templates/html/dart2js/impl_ElementEvents.darttemplate b/lib/html/templates/html/dart2js/impl_ElementEvents.darttemplate
index 41de3d780e9fe9bc34ffb38cf1a2621b77b077c7..e966b5a0687e3b2c22c18ad0e8b46784d97b8ef6 100644
--- a/lib/html/templates/html/dart2js/impl_ElementEvents.darttemplate
+++ b/lib/html/templates/html/dart2js/impl_ElementEvents.darttemplate
@@ -2,8 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-class $CLASSNAME extends $SUPER implements $INTERFACE {
- $CLASSNAME(_ptr) : super(_ptr);
+class $CLASSNAME extends $SUPER {
+ $CLASSNAME._(_ptr) : super._(_ptr);
$!MEMBERS
EventListenerList get mouseWheel {
if (JS('bool', '#.onwheel !== undefined', _ptr)) {

Powered by Google App Engine
This is Rietveld 408576698