Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 class CloseEvent extends Event native "CloseEvent" { | 2 class CloseEvent extends Event native "*CloseEvent" { |
| 3 | 3 |
| 4 int code; | 4 int code; |
| 5 | 5 |
| 6 String reason; | 6 String reason; |
| 7 | 7 |
| 8 bool wasClean; | 8 bool wasClean; |
| 9 | 9 |
| 10 void initCloseEvent(String typeArg, bool canBubbleArg, bool cancelableArg, boo l wasCleanArg, int codeArg, String reasonArg) native; | 10 void initCloseEvent(String typeArg, bool canBubbleArg, bool cancelableArg, boo l wasCleanArg, int codeArg, String reasonArg) native; |
| 11 } | 11 } |
| OLD | NEW |