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

Side by Side Diff: client/dom/generated/src/frog/XMLHttpRequest.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 XMLHttpRequest native "XMLHttpRequest" { 2 class XMLHttpRequest native "XMLHttpRequest" {
3 XMLHttpRequest() native; 3 XMLHttpRequest() native;
4 4
5 5
6 bool asBlob; 6 bool asBlob;
7 7
8 EventListener onabort;
9
10 EventListener onerror;
11
12 EventListener onload;
13
14 EventListener onloadstart;
15
16 EventListener onprogress;
17
18 EventListener onreadystatechange;
19
20 int readyState; 8 int readyState;
21 9
22 Blob responseBlob; 10 Blob responseBlob;
23 11
24 String responseText; 12 String responseText;
25 13
26 String responseType; 14 String responseType;
27 15
28 Document responseXML; 16 Document responseXML;
29 17
(...skipping 22 matching lines...) Expand all
52 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 40 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
53 41
54 void send([var data = null]) native; 42 void send([var data = null]) native;
55 43
56 void setRequestHeader(String header, String value) native; 44 void setRequestHeader(String header, String value) native;
57 45
58 var dartObjectLocalStorage; 46 var dartObjectLocalStorage;
59 47
60 String get typeName() native; 48 String get typeName() native;
61 } 49 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WorkerContext.dart ('k') | client/dom/generated/src/frog/XMLHttpRequestUpload.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698