OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: | 5 // WARNING: |
6 // This file contains documentation that is merged into the real source. | 6 // This file contains documentation that is merged into the real source. |
7 // Do not make code changes here. | 7 // Do not make code changes here. |
8 | 8 |
9 /// An HTML5 Abstract Worker. | 9 /// An HTML5 Abstract Worker. |
10 abstract class AbstractWorker implements EventTarget { | 10 abstract class AbstractWorker implements EventTarget { |
(...skipping 10 matching lines...) Expand all Loading... |
21 bool $dom_dispatchEvent(Event evt); | 21 bool $dom_dispatchEvent(Event evt); |
22 | 22 |
23 /** @domName AbstractWorker.removeEventListener */ | 23 /** @domName AbstractWorker.removeEventListener */ |
24 void $dom_removeEventListener(String type, EventListener listener, [bool useCa
pture]); | 24 void $dom_removeEventListener(String type, EventListener listener, [bool useCa
pture]); |
25 } | 25 } |
26 | 26 |
27 abstract class AbstractWorkerEvents implements Events { | 27 abstract class AbstractWorkerEvents implements Events { |
28 | 28 |
29 EventListenerList get error; | 29 EventListenerList get error; |
30 } | 30 } |
OLD | NEW |