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

Unified Diff: tools/dom/doc/interface/EventTarget.dartdoc

Issue 11961047: Remove the old hand-written HTML doc format, which has not worked for months. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « tools/dom/doc/interface/Event.dartdoc ('k') | tools/dom/doc/interface/HttpRequest.dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/doc/interface/EventTarget.dartdoc
diff --git a/tools/dom/doc/interface/EventTarget.dartdoc b/tools/dom/doc/interface/EventTarget.dartdoc
deleted file mode 100644
index c5bf5323e8a48e66e817190ba5a36096d2efa584..0000000000000000000000000000000000000000
--- a/tools/dom/doc/interface/EventTarget.dartdoc
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// 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: Do not edit - generated code.
-
-abstract class EventListenerList {
- EventListenerList add(EventListener handler, [bool useCapture]);
-
- EventListenerList remove(EventListener handler, [bool useCapture]);
-
- bool dispatch(Event evt);
-}
-
-abstract class Events {
- EventListenerList operator [](String type);
-}
-
-/// @domName EventTarget
-abstract class EventTarget {
-
- /** @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent */
- abstract Events get on;
-
- /** @domName EventTarget.addEventListener */
- void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
-
- /** @domName EventTarget.dispatchEvent */
- bool $dom_dispatchEvent(Event event);
-
- /** @domName EventTarget.removeEventListener */
- void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]);
-
-}
« no previous file with comments | « tools/dom/doc/interface/Event.dartdoc ('k') | tools/dom/doc/interface/HttpRequest.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698