| 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 _CoordinatesWrappingImplementation extends DOMWrapperBase implements Coord
inates { | 7 class _CoordinatesWrappingImplementation extends DOMWrapperBase implements Coord
inates { |
| 8 _CoordinatesWrappingImplementation() : super() {} | 8 _CoordinatesWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__CoordinatesWrappingImplementation() native { | 10 static create__CoordinatesWrappingImplementation() native { |
| 11 return new _CoordinatesWrappingImplementation(); | 11 return new _CoordinatesWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 num get accuracy() { return _get__Coordinates_accuracy(this); } | 14 num get accuracy() { return _get_accuracy(this); } |
| 15 static num _get__Coordinates_accuracy(var _this) native; | 15 static num _get_accuracy(var _this) native; |
| 16 | 16 |
| 17 num get altitude() { return _get__Coordinates_altitude(this); } | 17 num get altitude() { return _get_altitude(this); } |
| 18 static num _get__Coordinates_altitude(var _this) native; | 18 static num _get_altitude(var _this) native; |
| 19 | 19 |
| 20 num get altitudeAccuracy() { return _get__Coordinates_altitudeAccuracy(this);
} | 20 num get altitudeAccuracy() { return _get_altitudeAccuracy(this); } |
| 21 static num _get__Coordinates_altitudeAccuracy(var _this) native; | 21 static num _get_altitudeAccuracy(var _this) native; |
| 22 | 22 |
| 23 num get heading() { return _get__Coordinates_heading(this); } | 23 num get heading() { return _get_heading(this); } |
| 24 static num _get__Coordinates_heading(var _this) native; | 24 static num _get_heading(var _this) native; |
| 25 | 25 |
| 26 num get latitude() { return _get__Coordinates_latitude(this); } | 26 num get latitude() { return _get_latitude(this); } |
| 27 static num _get__Coordinates_latitude(var _this) native; | 27 static num _get_latitude(var _this) native; |
| 28 | 28 |
| 29 num get longitude() { return _get__Coordinates_longitude(this); } | 29 num get longitude() { return _get_longitude(this); } |
| 30 static num _get__Coordinates_longitude(var _this) native; | 30 static num _get_longitude(var _this) native; |
| 31 | 31 |
| 32 num get speed() { return _get__Coordinates_speed(this); } | 32 num get speed() { return _get_speed(this); } |
| 33 static num _get__Coordinates_speed(var _this) native; | 33 static num _get_speed(var _this) native; |
| 34 | 34 |
| 35 String get typeName() { return "Coordinates"; } | 35 String get typeName() { return "Coordinates"; } |
| 36 } | 36 } |
| OLD | NEW |