mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
a916f856db
Just a refactor, based on: https://github.com/w3c/geolocation-api/pull/104 Differential Revision: https://phabricator.services.mozilla.com/D128047
15 lines
475 B
Plaintext
15 lines
475 B
Plaintext
/* 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/. */
|
|
|
|
|
|
#include "domstubs.idl"
|
|
#include "nsIDOMGeoPositionCoords.idl"
|
|
|
|
[scriptable, uuid(dd9f7e81-0f74-4fb5-b361-37019bf60c3f)]
|
|
interface nsIDOMGeoPosition : nsISupports
|
|
{
|
|
readonly attribute EpochTimeStamp timestamp;
|
|
readonly attribute nsIDOMGeoPositionCoords coords;
|
|
};
|