| OLD | NEW |
| 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; | 10 String extensions; |
| 11 | 11 |
| 12 EventListener onclose; | 12 EventListener onclose; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 28 bool dispatchEvent(Event evt) native; | 28 bool dispatchEvent(Event evt) native; |
| 29 | 29 |
| 30 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 30 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 31 | 31 |
| 32 bool send(String data) native; | 32 bool send(String data) native; |
| 33 | 33 |
| 34 var dartObjectLocalStorage; | 34 var dartObjectLocalStorage; |
| 35 | 35 |
| 36 String get typeName() native; | 36 String get typeName() native; |
| 37 } | 37 } |
| OLD | NEW |