tenfourfox/dom/mobileconnection/interfaces/nsIMobileCellInfo.idl
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

70 lines
1.7 KiB
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 "nsISupports.idl"
[scriptable, uuid(286a96fe-5519-459b-9ef8-2e34b9c1f9f2)]
interface nsIMobileCellInfo: nsISupports
{
/**
* Mobile Location Area Code (LAC) for GSM/WCDMA networks.
*
* Possible ranges from 0x0000 to 0xffff.
* -1 if the LAC is unknown.
*/
readonly attribute long gsmLocationAreaCode;
/**
* Mobile Cell ID for GSM/WCDMA networks.
*
* Possible ranges from 0x00000000 to 0xffffffff.
* -1 if the cell id is unknown.
*/
readonly attribute long long gsmCellId;
/**
* Base Station ID for CDMA networks.
*
* Possible ranges from 0 to 65535.
* -1 if the base station id is unknown.
*/
readonly attribute long cdmaBaseStationId;
/**
* Base Station Latitude for CDMA networks.
*
* Possible ranges from -1296000 to 1296000.
* -2147483648 if the latitude is unknown.
*
* @see 3GPP2 C.S0005-A v6.0.
*/
readonly attribute long cdmaBaseStationLatitude;
/**
* Base Station Longitude for CDMA networks.
*
* Possible ranges from -2592000 to 2592000.
* -2147483648 if the longitude is unknown.
*
* @see 3GPP2 C.S0005-A v6.0.
*/
readonly attribute long cdmaBaseStationLongitude;
/**
* System ID for CDMA networks.
*
* Possible ranges from 0 to 32767.
* -1 if the system id is unknown.
*/
readonly attribute long cdmaSystemId;
/**
* Network ID for CDMA networks.
*
* Possible ranges from 0 to 65535.
* -1 if the network id is unknown.
*/
readonly attribute long cdmaNetworkId;
};