| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName Navigator |
| 8 interface Navigator { |
| 9 |
| 10 /** @domName Navigator.appCodeName */ |
| 11 final String appCodeName; |
| 12 |
| 13 /** @domName Navigator.appName */ |
| 14 final String appName; |
| 15 |
| 16 /** @domName Navigator.appVersion */ |
| 17 final String appVersion; |
| 18 |
| 19 /** @domName Navigator.cookieEnabled */ |
| 20 final bool cookieEnabled; |
| 21 |
| 22 /** @domName Navigator.geolocation */ |
| 23 final Geolocation geolocation; |
| 24 |
| 25 /** @domName Navigator.language */ |
| 26 final String language; |
| 27 |
| 28 /** @domName Navigator.mimeTypes */ |
| 29 final DOMMimeTypeArray mimeTypes; |
| 30 |
| 31 /** @domName Navigator.onLine */ |
| 32 final bool onLine; |
| 33 |
| 34 /** @domName Navigator.platform */ |
| 35 final String platform; |
| 36 |
| 37 /** @domName Navigator.plugins */ |
| 38 final DOMPluginArray plugins; |
| 39 |
| 40 /** @domName Navigator.product */ |
| 41 final String product; |
| 42 |
| 43 /** @domName Navigator.productSub */ |
| 44 final String productSub; |
| 45 |
| 46 /** @domName Navigator.userAgent */ |
| 47 final String userAgent; |
| 48 |
| 49 /** @domName Navigator.vendor */ |
| 50 final String vendor; |
| 51 |
| 52 /** @domName Navigator.vendorSub */ |
| 53 final String vendorSub; |
| 54 |
| 55 /** @domName Navigator.webkitBattery */ |
| 56 final BatteryManager webkitBattery; |
| 57 |
| 58 /** @domName Navigator.webkitPointer */ |
| 59 final PointerLock webkitPointer; |
| 60 |
| 61 /** @domName Navigator.getStorageUpdates */ |
| 62 void getStorageUpdates(); |
| 63 |
| 64 /** @domName Navigator.javaEnabled */ |
| 65 bool javaEnabled(); |
| 66 |
| 67 /** @domName Navigator.registerProtocolHandler */ |
| 68 void registerProtocolHandler(String scheme, String url, String title); |
| 69 |
| 70 /** @domName Navigator.webkitGetUserMedia */ |
| 71 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success
Callback, [NavigatorUserMediaErrorCallback errorCallback]); |
| 72 } |
| OLD | NEW |