mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
6023989158
The Geolocation API specification renamed the following interfaces and removed the [NoInterfaceObject] annotation so that these types are now exposed to script: * Coordinates -> GeolocationCoordinates * Position -> GeolocationPosition * PositionError -> GeolocationPositionError This is done in response to an effort to remove the [NoInterfaceObject] annotation from WebIDL. Additionally, the following interfaces are now only exposed in Secure Contexts: * GeolocationCoordinates * GeolocationPosition Differential Revision: https://phabricator.services.mozilla.com/D51972 --HG-- rename : dom/geolocation/PositionError.cpp => dom/geolocation/GeolocationPositionError.cpp rename : dom/geolocation/PositionError.h => dom/geolocation/GeolocationPositionError.h rename : dom/webidl/Coordinates.webidl => dom/webidl/GeolocationCoordinates.webidl rename : dom/webidl/Position.webidl => dom/webidl/GeolocationPosition.webidl rename : dom/webidl/PositionError.webidl => dom/webidl/GeolocationPositionError.webidl extra : moz-landing-system : lando
21 lines
763 B
Plaintext
21 lines
763 B
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* http://www.w3.org/TR/geolocation-API
|
|
*
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
* liability, trademark and document use rules apply.
|
|
*/
|
|
|
|
[Exposed=Window]
|
|
interface GeolocationPositionError {
|
|
const unsigned short PERMISSION_DENIED = 1;
|
|
const unsigned short POSITION_UNAVAILABLE = 2;
|
|
const unsigned short TIMEOUT = 3;
|
|
readonly attribute unsigned short code;
|
|
readonly attribute DOMString message;
|
|
};
|