OLD | NEW |
1 | 1 |
2 class NavigatorJs extends DOMTypeJs implements Navigator native "*Navigator" { | 2 class _NavigatorJs extends _DOMTypeJs implements Navigator native "*Navigator" { |
3 | 3 |
4 String get appCodeName() native "return this.appCodeName;"; | 4 String get appCodeName() native "return this.appCodeName;"; |
5 | 5 |
6 String get appName() native "return this.appName;"; | 6 String get appName() native "return this.appName;"; |
7 | 7 |
8 String get appVersion() native "return this.appVersion;"; | 8 String get appVersion() native "return this.appVersion;"; |
9 | 9 |
10 bool get cookieEnabled() native "return this.cookieEnabled;"; | 10 bool get cookieEnabled() native "return this.cookieEnabled;"; |
11 | 11 |
12 GeolocationJs get geolocation() native "return this.geolocation;"; | 12 _GeolocationJs get geolocation() native "return this.geolocation;"; |
13 | 13 |
14 String get language() native "return this.language;"; | 14 String get language() native "return this.language;"; |
15 | 15 |
16 DOMMimeTypeArrayJs get mimeTypes() native "return this.mimeTypes;"; | 16 _DOMMimeTypeArrayJs get mimeTypes() native "return this.mimeTypes;"; |
17 | 17 |
18 bool get onLine() native "return this.onLine;"; | 18 bool get onLine() native "return this.onLine;"; |
19 | 19 |
20 String get platform() native "return this.platform;"; | 20 String get platform() native "return this.platform;"; |
21 | 21 |
22 DOMPluginArrayJs get plugins() native "return this.plugins;"; | 22 _DOMPluginArrayJs get plugins() native "return this.plugins;"; |
23 | 23 |
24 String get product() native "return this.product;"; | 24 String get product() native "return this.product;"; |
25 | 25 |
26 String get productSub() native "return this.productSub;"; | 26 String get productSub() native "return this.productSub;"; |
27 | 27 |
28 String get userAgent() native "return this.userAgent;"; | 28 String get userAgent() native "return this.userAgent;"; |
29 | 29 |
30 String get vendor() native "return this.vendor;"; | 30 String get vendor() native "return this.vendor;"; |
31 | 31 |
32 String get vendorSub() native "return this.vendorSub;"; | 32 String get vendorSub() native "return this.vendorSub;"; |
33 | 33 |
34 void getStorageUpdates() native; | 34 void getStorageUpdates() native; |
35 | 35 |
36 bool javaEnabled() native; | 36 bool javaEnabled() native; |
37 | 37 |
38 void registerProtocolHandler(String scheme, String url, String title) native; | 38 void registerProtocolHandler(String scheme, String url, String title) native; |
39 } | 39 } |
OLD | NEW |