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 CoordinatesWrappingImplementation extends DOMWrapperBase implements Coordi
nates { | |
8 CoordinatesWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
9 | |
10 num get accuracy() { return _ptr.accuracy; } | |
11 | |
12 num get altitude() { return _ptr.altitude; } | |
13 | |
14 num get altitudeAccuracy() { return _ptr.altitudeAccuracy; } | |
15 | |
16 num get heading() { return _ptr.heading; } | |
17 | |
18 num get latitude() { return _ptr.latitude; } | |
19 | |
20 num get longitude() { return _ptr.longitude; } | |
21 | |
22 num get speed() { return _ptr.speed; } | |
23 } | |
OLD | NEW |