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

Side by Side Diff: client/dom/generated/src/interface/Notification.dart

Issue 8637013: Remove support for attribute event listeners. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 get dir();
10 10
11 void set dir(String value); 11 void set dir(String value);
12 12
13 EventListener get onclick();
14
15 void set onclick(EventListener value);
16
17 EventListener get onclose();
18
19 void set onclose(EventListener value);
20
21 EventListener get ondisplay();
22
23 void set ondisplay(EventListener value);
24
25 EventListener get onerror();
26
27 void set onerror(EventListener value);
28
29 String get replaceId(); 13 String get replaceId();
30 14
31 void set replaceId(String value); 15 void set replaceId(String value);
32 16
33 void addEventListener(String type, EventListener listener, [bool useCapture]); 17 void addEventListener(String type, EventListener listener, [bool useCapture]);
34 18
35 void cancel(); 19 void cancel();
36 20
37 bool dispatchEvent(Event evt); 21 bool dispatchEvent(Event evt);
38 22
39 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 23 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
40 24
41 void show(); 25 void show();
42 } 26 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/MessagePort.dart ('k') | client/dom/generated/src/interface/SharedWorkercontext.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698