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

Side by Side Diff: client/dom/generated/src/interface/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 // 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 XMLHttpRequest extends EventTarget factory _XMLHttpRequestFactoryProvi der { 7 interface XMLHttpRequest extends EventTarget factory _XMLHttpRequestFactoryProvi der {
8 8
9 XMLHttpRequest(); 9 XMLHttpRequest();
10 10
11 11
12 static final int DONE = 4; 12 static final int DONE = 4;
13 13
14 static final int HEADERS_RECEIVED = 2; 14 static final int HEADERS_RECEIVED = 2;
15 15
16 static final int LOADING = 3; 16 static final int LOADING = 3;
17 17
18 static final int OPENED = 1; 18 static final int OPENED = 1;
19 19
20 static final int UNSENT = 0; 20 static final int UNSENT = 0;
21 21
22 bool get asBlob(); 22 bool get asBlob();
23 23
24 void set asBlob(bool value); 24 void set asBlob(bool value);
25 25
26 EventListener get onabort();
27
28 void set onabort(EventListener value);
29
30 EventListener get onerror();
31
32 void set onerror(EventListener value);
33
34 EventListener get onload();
35
36 void set onload(EventListener value);
37
38 EventListener get onloadstart();
39
40 void set onloadstart(EventListener value);
41
42 EventListener get onprogress();
43
44 void set onprogress(EventListener value);
45
46 EventListener get onreadystatechange();
47
48 void set onreadystatechange(EventListener value);
49
50 int get readyState(); 26 int get readyState();
51 27
52 Blob get responseBlob(); 28 Blob get responseBlob();
53 29
54 String get responseText(); 30 String get responseText();
55 31
56 String get responseType(); 32 String get responseType();
57 33
58 void set responseType(String value); 34 void set responseType(String value);
59 35
(...skipping 22 matching lines...) Expand all
82 void open(String method, String url, [bool async, String user, String password ]); 58 void open(String method, String url, [bool async, String user, String password ]);
83 59
84 void overrideMimeType(String override); 60 void overrideMimeType(String override);
85 61
86 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 62 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
87 63
88 void send([var data]); 64 void send([var data]);
89 65
90 void setRequestHeader(String header, String value); 66 void setRequestHeader(String header, String value);
91 } 67 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/WorkerContext.dart ('k') | client/dom/generated/src/interface/XMLHttpRequestUpload.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698