OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface Notification extends EventTarget { | 7 interface Notification extends EventTarget { |
8 | 8 |
9 String get dir(); | 9 String dir; |
10 | 10 |
11 void set dir(String value); | 11 String replaceId; |
12 | |
13 String get replaceId(); | |
14 | |
15 void set replaceId(String value); | |
16 | 12 |
17 void addEventListener(String type, EventListener listener, [bool useCapture]); | 13 void addEventListener(String type, EventListener listener, [bool useCapture]); |
18 | 14 |
19 void cancel(); | 15 void cancel(); |
20 | 16 |
21 bool dispatchEvent(Event evt); | 17 bool dispatchEvent(Event evt); |
22 | 18 |
23 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 19 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
24 | 20 |
25 void show(); | 21 void show(); |
26 } | 22 } |
OLD | NEW |