| OLD | NEW |
| 1 | 1 |
| 2 class Navigator native "*Navigator" { | 2 class Navigator native "*Navigator" { |
| 3 | 3 |
| 4 String appCodeName; | 4 String appCodeName; |
| 5 | 5 |
| 6 String appName; | 6 String appName; |
| 7 | 7 |
| 8 String appVersion; | 8 String appVersion; |
| 9 | 9 |
| 10 bool cookieEnabled; | 10 bool cookieEnabled; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 String vendor; | 30 String vendor; |
| 31 | 31 |
| 32 String vendorSub; | 32 String 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 |
| 40 void webkitGetUserMedia(String options, NavigatorUserMediaSuccessCallback succ
essCallback, [NavigatorUserMediaErrorCallback errorCallback = null]) native; |
| 41 |
| 40 var dartObjectLocalStorage; | 42 var dartObjectLocalStorage; |
| 41 | 43 |
| 42 String get typeName() native; | 44 String get typeName() native; |
| 43 } | 45 } |
| OLD | NEW |