| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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 part of $LIBRARYNAME; | 5 part of $LIBRARYNAME; |
| 6 | 6 |
| 7 @DocsEditable | 7 @DocsEditable |
| 8 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { | 8 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { |
| 9 | 9 |
| 10 @DomName('Geolocation.getCurrentPosition') | 10 @DomName('Geolocation.getCurrentPosition') |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } else { | 68 } else { |
| 69 assert(watchId != null); | 69 assert(watchId != null); |
| 70 $dom_clearWatch(watchId); | 70 $dom_clearWatch(watchId); |
| 71 } | 71 } |
| 72 }); | 72 }); |
| 73 | 73 |
| 74 return controller.stream; | 74 return controller.stream; |
| 75 } | 75 } |
| 76 | 76 |
| 77 Geoposition _ensurePosition(domPosition) { | 77 Geoposition _ensurePosition(domPosition) { |
| 78 $if DART2JS |
| 78 try { | 79 try { |
| 79 // Firefox may throw on this. | 80 // Firefox may throw on this. |
| 80 if (domPosition is Geoposition) { | 81 if (domPosition is Geoposition) { |
| 81 return domPosition; | 82 return domPosition; |
| 82 } | 83 } |
| 83 } catch(e) {} | 84 } catch(e) {} |
| 84 return new _GeopositionWrapper(domPosition); | 85 return new _GeopositionWrapper(domPosition); |
| 86 $else |
| 87 return domPosition; |
| 88 $endif |
| 85 } | 89 } |
| 90 |
| 86 $!MEMBERS} | 91 $!MEMBERS} |
| 87 | 92 |
| 88 $if DART2JS | 93 $if DART2JS |
| 89 /** | 94 /** |
| 90 * Wrapper for Firefox- it returns an object which we cannot map correctly. | 95 * Wrapper for Firefox- it returns an object which we cannot map correctly. |
| 91 * Basically Firefox was returning a [xpconnect wrapped nsIDOMGeoPosition] but | 96 * Basically Firefox was returning a [xpconnect wrapped nsIDOMGeoPosition] but |
| 92 * which has further oddities. | 97 * which has further oddities. |
| 93 */ | 98 */ |
| 94 class _GeopositionWrapper implements Geoposition { | 99 class _GeopositionWrapper implements Geoposition { |
| 95 var _ptr; | 100 var _ptr; |
| 96 _GeopositionWrapper(this._ptr); | 101 _GeopositionWrapper(this._ptr); |
| 97 | 102 |
| 98 Coordinates get coords => JS('Coordinates', '#.coords', _ptr); | 103 Coordinates get coords => JS('Coordinates', '#.coords', _ptr); |
| 99 int get timestamp => JS('int', '#.timestamp', _ptr); | 104 int get timestamp => JS('int', '#.timestamp', _ptr); |
| 100 } | 105 } |
| 101 $endif | 106 $endif |
| 102 | 107 |
| 103 | 108 |
| OLD | NEW |