| Index: lib/html/frog/html_frog.dart
|
| diff --git a/lib/html/frog/html_frog.dart b/lib/html/frog/html_frog.dart
|
| index c541ab10935e5c2e471f592f07b09afae90c16fe..d7d5ec5bc3760a32c1e2a885c29ac9f341a14e29 100644
|
| --- a/lib/html/frog/html_frog.dart
|
| +++ b/lib/html/frog/html_frog.dart
|
| @@ -7265,9 +7265,9 @@ class _GeolocationImpl implements Geolocation native "*Geolocation" {
|
|
|
| void clearWatch(int watchId) native;
|
|
|
| - void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback = null]) native;
|
| + void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback = null, Object options = null]) native;
|
|
|
| - int watchPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback = null]) native;
|
| + int watchPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback = null, Object options = null]) native;
|
| }
|
|
|
| class _GeopositionImpl implements Geoposition native "*Geoposition" {
|
| @@ -24237,10 +24237,10 @@ interface Geolocation {
|
| void clearWatch(int watchId);
|
|
|
| /** @domName Geolocation.getCurrentPosition */
|
| - void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback]);
|
| + void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback, Object options]);
|
|
|
| /** @domName Geolocation.watchPosition */
|
| - int watchPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback]);
|
| + int watchPosition(PositionCallback successCallback, [PositionErrorCallback errorCallback, Object options]);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
|
|