| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class _WorkerNavigatorWrappingImplementation extends DOMWrapperBase implements W
orkerNavigator { | 7 class _WorkerNavigatorWrappingImplementation extends DOMWrapperBase implements W
orkerNavigator { |
| 8 _WorkerNavigatorWrappingImplementation() : super() {} | 8 _WorkerNavigatorWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__WorkerNavigatorWrappingImplementation() native { | 10 static create__WorkerNavigatorWrappingImplementation() native { |
| 11 return new _WorkerNavigatorWrappingImplementation(); | 11 return new _WorkerNavigatorWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get appName() { return _get__WorkerNavigator_appName(this); } | 14 String get appName() { return _get_appName(this); } |
| 15 static String _get__WorkerNavigator_appName(var _this) native; | 15 static String _get_appName(var _this) native; |
| 16 | 16 |
| 17 String get appVersion() { return _get__WorkerNavigator_appVersion(this); } | 17 String get appVersion() { return _get_appVersion(this); } |
| 18 static String _get__WorkerNavigator_appVersion(var _this) native; | 18 static String _get_appVersion(var _this) native; |
| 19 | 19 |
| 20 bool get onLine() { return _get__WorkerNavigator_onLine(this); } | 20 bool get onLine() { return _get_onLine(this); } |
| 21 static bool _get__WorkerNavigator_onLine(var _this) native; | 21 static bool _get_onLine(var _this) native; |
| 22 | 22 |
| 23 String get platform() { return _get__WorkerNavigator_platform(this); } | 23 String get platform() { return _get_platform(this); } |
| 24 static String _get__WorkerNavigator_platform(var _this) native; | 24 static String _get_platform(var _this) native; |
| 25 | 25 |
| 26 String get userAgent() { return _get__WorkerNavigator_userAgent(this); } | 26 String get userAgent() { return _get_userAgent(this); } |
| 27 static String _get__WorkerNavigator_userAgent(var _this) native; | 27 static String _get_userAgent(var _this) native; |
| 28 | 28 |
| 29 String get typeName() { return "WorkerNavigator"; } | 29 String get typeName() { return "WorkerNavigator"; } |
| 30 } | 30 } |
| OLD | NEW |