Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(510)

Side by Side Diff: tools/dom/templates/html/impl/impl_Geolocation.darttemplate

Issue 1894713002: Strong html (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: ptal Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS { 8 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS {
9 9
10 @DomName('Geolocation.getCurrentPosition') 10 @DomName('Geolocation.getCurrentPosition')
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 options['enableHighAccuracy'] = enableHighAccuracy; 45 options['enableHighAccuracy'] = enableHighAccuracy;
46 } 46 }
47 if (timeout != null) { 47 if (timeout != null) {
48 options['timeout'] = timeout.inMilliseconds; 48 options['timeout'] = timeout.inMilliseconds;
49 } 49 }
50 if (maximumAge != null) { 50 if (maximumAge != null) {
51 options['maximumAge'] = maximumAge.inMilliseconds; 51 options['maximumAge'] = maximumAge.inMilliseconds;
52 } 52 }
53 53
54 int watchId; 54 int watchId;
55 var controller; 55 // TODO(jacobr): it seems like a bug that we have to specifiy the static
56 // type here for controller.stream to have the right type.
57 // dartbug.com/26278
58 StreamController<Geoposition> controller;
56 controller = new StreamController<Geoposition>(sync: true, 59 controller = new StreamController<Geoposition>(sync: true,
57 onListen: () { 60 onListen: () {
58 assert(watchId == null); 61 assert(watchId == null);
59 watchId = _watchPosition( 62 watchId = _watchPosition(
60 (position) { 63 (position) {
61 controller.add(_ensurePosition(position)); 64 controller.add(_ensurePosition(position));
62 }, 65 },
63 (error) { 66 (error) {
64 controller.addError(error); 67 controller.addError(error);
65 }, 68 },
(...skipping 30 matching lines...) Expand all
96 * which has further oddities. 99 * which has further oddities.
97 */ 100 */
98 class _GeopositionWrapper implements Geoposition { 101 class _GeopositionWrapper implements Geoposition {
99 var _ptr; 102 var _ptr;
100 _GeopositionWrapper(this._ptr); 103 _GeopositionWrapper(this._ptr);
101 104
102 Coordinates get coords => JS('Coordinates', '#.coords', _ptr); 105 Coordinates get coords => JS('Coordinates', '#.coords', _ptr);
103 int get timestamp => JS('int', '#.timestamp', _ptr); 106 int get timestamp => JS('int', '#.timestamp', _ptr);
104 } 107 }
105 $endif 108 $endif
OLDNEW
« no previous file with comments | « tools/dom/templates/html/impl/impl_Element.darttemplate ('k') | tools/dom/templates/html/impl/impl_HTMLDocument.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698