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

Unified Diff: lib/html/doc/interface/EventTarget.dartdoc

Issue 11090010: Remove explicit interface versions of dartdoc files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « lib/html/doc/interface/EventSource.dartdoc ('k') | lib/html/doc/interface/FieldSetElement.dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/doc/interface/EventTarget.dartdoc
diff --git a/lib/html/doc/interface/EventTarget.dartdoc b/lib/html/doc/interface/EventTarget.dartdoc
index 2f702ab33eb616f01a6875a8772b7e4835e2e3db..c5bf5323e8a48e66e817190ba5a36096d2efa584 100644
--- a/lib/html/doc/interface/EventTarget.dartdoc
+++ b/lib/html/doc/interface/EventTarget.dartdoc
@@ -2,11 +2,9 @@
// 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.
-// WARNING:
-// This file contains documentation that is merged into the real source.
-// Do not make code changes here.
+// WARNING: Do not edit - generated code.
-interface EventListenerList {
+abstract class EventListenerList {
EventListenerList add(EventListener handler, [bool useCapture]);
EventListenerList remove(EventListener handler, [bool useCapture]);
@@ -14,15 +12,15 @@ interface EventListenerList {
bool dispatch(Event evt);
}
-interface Events {
+abstract class Events {
EventListenerList operator [](String type);
}
/// @domName EventTarget
-interface EventTarget {
+abstract class EventTarget {
/** @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent */
- final Events on;
+ abstract Events get on;
/** @domName EventTarget.addEventListener */
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
« no previous file with comments | « lib/html/doc/interface/EventSource.dartdoc ('k') | lib/html/doc/interface/FieldSetElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698