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

Side by Side Diff: client/dom/generated/src/frog/XMLHttpRequest.dart

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage 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 1
2 class XMLHttpRequest native "XMLHttpRequest" { 2 class XMLHttpRequest native "XMLHttpRequest" {
3 3
4 bool asBlob; 4 bool asBlob;
5 5
6 EventListener onabort; 6 EventListener onabort;
7 7
8 EventListener onerror; 8 EventListener onerror;
9 9
10 EventListener onload; 10 EventListener onload;
(...skipping 25 matching lines...) Expand all
36 void abort() native; 36 void abort() native;
37 37
38 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 38 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
39 39
40 bool dispatchEvent(Event evt) native; 40 bool dispatchEvent(Event evt) native;
41 41
42 String getAllResponseHeaders() native; 42 String getAllResponseHeaders() native;
43 43
44 String getResponseHeader(String header) native; 44 String getResponseHeader(String header) native;
45 45
46 void open(String method, String url, bool async, [String user = null, String p assword = null]) native; 46 void open(String method, String url, [bool async = null, String user = null, S tring password = null]) native;
47 47
48 void overrideMimeType(String override) native; 48 void overrideMimeType(String override) native;
49 49
50 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 50 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
51 51
52 void send([var data = null]) native; 52 void send([var data = null]) native;
53 53
54 void setRequestHeader(String header, String value) native; 54 void setRequestHeader(String header, String value) native;
55 55
56 var dartObjectLocalStorage; 56 var dartObjectLocalStorage;
57 57
58 String get typeName() native; 58 String get typeName() native;
59 } 59 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WheelEvent.dart ('k') | client/dom/generated/src/interface/ArrayBuffer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698