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

Unified Diff: sdk/lib/html/doc/interface/AbstractWorker.dartdoc

Issue 11691009: Moved most of html lib generating scripts into tools. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « sdk/lib/html/doc/html.dartdoc ('k') | sdk/lib/html/doc/interface/Element.dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/doc/interface/AbstractWorker.dartdoc
diff --git a/sdk/lib/html/doc/interface/AbstractWorker.dartdoc b/sdk/lib/html/doc/interface/AbstractWorker.dartdoc
deleted file mode 100644
index 010a3f855b451fb3b8852369c29946b4a327ce23..0000000000000000000000000000000000000000
--- a/sdk/lib/html/doc/interface/AbstractWorker.dartdoc
+++ /dev/null
@@ -1,30 +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:
-// This file contains documentation that is merged into the real source.
-// Do not make code changes here.
-
-/// An HTML5 Abstract Worker.
-abstract class AbstractWorker implements EventTarget {
-
- /**
- * The valid events associated with an AbstractWorker.
- */
- AbstractWorkerEvents get on;
-
- /** @domName AbstractWorker.addEventListener */
- void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
-
- /** @domName AbstractWorker.dispatchEvent */
- bool $dom_dispatchEvent(Event evt);
-
- /** @domName AbstractWorker.removeEventListener */
- void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]);
-}
-
-abstract class AbstractWorkerEvents implements Events {
-
- EventListenerList get error;
-}
« no previous file with comments | « sdk/lib/html/doc/html.dartdoc ('k') | sdk/lib/html/doc/interface/Element.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698