OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, 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 class NavigatorWrappingImplementation extends DOMWrapperBase implements Navigato
r { | |
8 NavigatorWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
9 | |
10 String get appCodeName() { return _ptr.appCodeName; } | |
11 | |
12 String get appName() { return _ptr.appName; } | |
13 | |
14 String get appVersion() { return _ptr.appVersion; } | |
15 | |
16 bool get cookieEnabled() { return _ptr.cookieEnabled; } | |
17 | |
18 String get language() { return _ptr.language; } | |
19 | |
20 DOMMimeTypeArray get mimeTypes() { return LevelDom.wrapDOMMimeTypeArray(_ptr.m
imeTypes); } | |
21 | |
22 bool get onLine() { return _ptr.onLine; } | |
23 | |
24 String get platform() { return _ptr.platform; } | |
25 | |
26 DOMPluginArray get plugins() { return LevelDom.wrapDOMPluginArray(_ptr.plugins
); } | |
27 | |
28 String get product() { return _ptr.product; } | |
29 | |
30 String get productSub() { return _ptr.productSub; } | |
31 | |
32 String get userAgent() { return _ptr.userAgent; } | |
33 | |
34 String get vendor() { return _ptr.vendor; } | |
35 | |
36 String get vendorSub() { return _ptr.vendorSub; } | |
37 | |
38 void getStorageUpdates() { | |
39 _ptr.getStorageUpdates(); | |
40 return; | |
41 } | |
42 | |
43 bool javaEnabled() { | |
44 return _ptr.javaEnabled(); | |
45 } | |
46 } | |
OLD | NEW |