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

Unified Diff: sdk/lib/html/templates/html/interface/interface_EventTarget.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/interface/interface_EventTarget.darttemplate
diff --git a/sdk/lib/html/templates/html/interface/interface_EventTarget.darttemplate b/sdk/lib/html/templates/html/interface/interface_EventTarget.darttemplate
index aa7288a3b5d890d6c89ebbdc34f2881cb5fc8b05..4ef6cb693df81eab6f298d3a2fc7f5fad9738ac5 100644
--- a/sdk/lib/html/templates/html/interface/interface_EventTarget.darttemplate
+++ b/sdk/lib/html/templates/html/interface/interface_EventTarget.darttemplate
@@ -6,7 +6,7 @@
part of html;
-abstract class EventListenerList {
+abstract class _IEventListenerList {
EventListenerList add(EventListener handler, [bool useCapture]);
EventListenerList remove(EventListener handler, [bool useCapture]);
@@ -14,7 +14,7 @@ abstract class EventListenerList {
bool dispatch(Event evt);
}
-abstract class Events {
+abstract class _IEvents {
EventListenerList operator [](String type);
}

Powered by Google App Engine
This is Rietveld 408576698