| OLD | NEW |
| 1 | 1 |
| 2 class MessageEventJs extends EventJs implements MessageEvent native "*MessageEve
nt" { | 2 class _MessageEventJs extends _EventJs implements MessageEvent native "*MessageE
vent" { |
| 3 | 3 |
| 4 Object get data() native "return this.data;"; | 4 Object get data() native "return this.data;"; |
| 5 | 5 |
| 6 String get lastEventId() native "return this.lastEventId;"; | 6 String get lastEventId() native "return this.lastEventId;"; |
| 7 | 7 |
| 8 String get origin() native "return this.origin;"; | 8 String get origin() native "return this.origin;"; |
| 9 | 9 |
| 10 List get ports() native "return this.ports;"; | 10 List get ports() native "return this.ports;"; |
| 11 | 11 |
| 12 DOMWindowJs get source() native "return this.source;"; | 12 _DOMWindowJs get source() native "return this.source;"; |
| 13 | 13 |
| 14 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O
bject dataArg, String originArg, String lastEventIdArg, DOMWindowJs sourceArg, L
ist messagePorts) native; | 14 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O
bject dataArg, String originArg, String lastEventIdArg, _DOMWindowJs sourceArg,
List messagePorts) native; |
| 15 | 15 |
| 16 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable
Arg, Object dataArg, String originArg, String lastEventIdArg, DOMWindowJs source
Arg, List transferables) native; | 16 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable
Arg, Object dataArg, String originArg, String lastEventIdArg, _DOMWindowJs sourc
eArg, List transferables) native; |
| 17 } | 17 } |
| OLD | NEW |