| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 var controller; | 55 var controller; |
| 56 controller = new StreamController<Geoposition>( | 56 controller = new StreamController<Geoposition>( |
| 57 onSubscriptionStateChange: () { | 57 onSubscriptionStateChange: () { |
| 58 if (controller.hasSubscribers) { | 58 if (controller.hasSubscribers) { |
| 59 assert(watchId == null); | 59 assert(watchId == null); |
| 60 watchId = $dom_watchPosition( | 60 watchId = $dom_watchPosition( |
| 61 (position) { | 61 (position) { |
| 62 controller.add(_ensurePosition(position)); | 62 controller.add(_ensurePosition(position)); |
| 63 }, | 63 }, |
| 64 (error) { | 64 (error) { |
| 65 controller.signalError(error); | 65 controller.addError(error); |
| 66 }, | 66 }, |
| 67 options); | 67 options); |
| 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 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 99 class _GeopositionWrapper implements Geoposition { | 99 class _GeopositionWrapper implements Geoposition { |
| 100 var _ptr; | 100 var _ptr; |
| 101 _GeopositionWrapper(this._ptr); | 101 _GeopositionWrapper(this._ptr); |
| 102 | 102 |
| 103 Coordinates get coords => JS('Coordinates', '#.coords', _ptr); | 103 Coordinates get coords => JS('Coordinates', '#.coords', _ptr); |
| 104 int get timestamp => JS('int', '#.timestamp', _ptr); | 104 int get timestamp => JS('int', '#.timestamp', _ptr); |
| 105 } | 105 } |
| 106 $endif | 106 $endif |
| 107 | 107 |
| 108 | 108 |
| OLD | NEW |