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

Unified Diff: lib/html/doc/interface/AbstractWorker.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/html.dartdoc ('k') | lib/html/doc/interface/AnchorElement.dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/doc/interface/AbstractWorker.dartdoc
diff --git a/lib/html/doc/interface/AbstractWorker.dartdoc b/lib/html/doc/interface/AbstractWorker.dartdoc
index 412e073faacdcd19a06e5bd709933fb70329d526..010a3f855b451fb3b8852369c29946b4a327ce23 100644
--- a/lib/html/doc/interface/AbstractWorker.dartdoc
+++ b/lib/html/doc/interface/AbstractWorker.dartdoc
@@ -7,12 +7,12 @@
// Do not make code changes here.
/// An HTML5 Abstract Worker.
-interface AbstractWorker extends EventTarget {
+abstract class AbstractWorker implements EventTarget {
/**
* The valid events associated with an AbstractWorker.
*/
- AbstractWorkerEvents get on();
+ AbstractWorkerEvents get on;
/** @domName AbstractWorker.addEventListener */
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -24,7 +24,7 @@ interface AbstractWorker extends EventTarget {
void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]);
}
-interface AbstractWorkerEvents extends Events {
+abstract class AbstractWorkerEvents implements Events {
- EventListenerList get error();
+ EventListenerList get error;
}
« no previous file with comments | « lib/html/doc/html.dartdoc ('k') | lib/html/doc/interface/AnchorElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698