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

Side by Side Diff: client/dom/generated/src/frog/DOMApplicationCache.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 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 1
2 class DOMApplicationCache native "DOMApplicationCache" { 2 class DOMApplicationCache native "DOMApplicationCache" {
3 3
4 EventListener oncached;
5
6 EventListener onchecking;
7
8 EventListener ondownloading;
9
10 EventListener onerror;
11
12 EventListener onnoupdate;
13
14 EventListener onobsolete;
15
16 EventListener onprogress;
17
18 EventListener onupdateready;
19
20 int status; 4 int status;
21 5
22 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 6 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
23 7
24 bool dispatchEvent(Event evt) native; 8 bool dispatchEvent(Event evt) native;
25 9
26 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 10 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
27 11
28 void swapCache() native; 12 void swapCache() native;
29 13
30 void update() native; 14 void update() native;
31 15
32 var dartObjectLocalStorage; 16 var dartObjectLocalStorage;
33 17
34 String get typeName() native; 18 String get typeName() native;
35 } 19 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/AbstractWorker.dart ('k') | client/dom/generated/src/frog/DOMWindow.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698