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

Side by Side Diff: client/dom/generated/src/frog/WebSocket.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 WebSocket native "WebSocket" { 2 class WebSocket native "WebSocket" {
3 3
4 String URL; 4 String URL;
5 5
6 String binaryType; 6 String binaryType;
7 7
8 int bufferedAmount; 8 int bufferedAmount;
9 9
10 String extensions;
11
10 EventListener onclose; 12 EventListener onclose;
11 13
12 EventListener onerror; 14 EventListener onerror;
13 15
14 EventListener onmessage; 16 EventListener onmessage;
15 17
16 EventListener onopen; 18 EventListener onopen;
17 19
18 String protocol; 20 String protocol;
19 21
20 int readyState; 22 int readyState;
21 23
22 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 24 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
23 25
24 void close([int code = null, String reason = null]) native; 26 void close([int code = null, String reason = null]) native;
25 27
26 bool dispatchEvent(Event evt) native; 28 bool dispatchEvent(Event evt) native;
27 29
28 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 30 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
29 31
30 bool send(String data) native; 32 bool send(String data) native;
31 33
32 var dartObjectLocalStorage; 34 var dartObjectLocalStorage;
33 35
34 String get typeName() native; 36 String get typeName() native;
35 } 37 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WebKitMutationObserver.dart ('k') | client/dom/generated/src/frog/WheelEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698