OLD | NEW |
1 | 1 |
2 class WorkerNavigatorJs extends DOMTypeJs implements WorkerNavigator native "*Wo
rkerNavigator" { | 2 class _WorkerNavigatorJs extends _DOMTypeJs implements WorkerNavigator native "*
WorkerNavigator" { |
3 | 3 |
4 String get appName() native "return this.appName;"; | 4 String get appName() native "return this.appName;"; |
5 | 5 |
6 String get appVersion() native "return this.appVersion;"; | 6 String get appVersion() native "return this.appVersion;"; |
7 | 7 |
8 bool get onLine() native "return this.onLine;"; | 8 bool get onLine() native "return this.onLine;"; |
9 | 9 |
10 String get platform() native "return this.platform;"; | 10 String get platform() native "return this.platform;"; |
11 | 11 |
12 String get userAgent() native "return this.userAgent;"; | 12 String get userAgent() native "return this.userAgent;"; |
13 } | 13 } |
OLD | NEW |