Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / dom / webidl / MozMobileCellInfo.webidl
blobb8f6918e9951db7561276e503d14b1db9ef62e72
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 [Pref="dom.mobileconnection.enabled"]
6 interface MozMobileCellInfo
8   /**
9    * Mobile Location Area Code (LAC) for GSM/WCDMA networks.
10    *
11    * Possible ranges from 0x0000 to 0xffff.
12    * -1 if the LAC is unknown.
13    */
14   readonly attribute long gsmLocationAreaCode;
16   /**
17    * Mobile Cell ID for GSM/WCDMA networks.
18    *
19    * Possible ranges from 0x00000000 to 0xffffffff.
20    * -1 if the cell id is unknown.
21    */
22   readonly attribute long long gsmCellId;
24   /**
25    * Base Station ID for CDMA networks.
26    *
27    * Possible ranges from 0 to 65535.
28    * -1 if the base station id is unknown.
29    */
30   readonly attribute long cdmaBaseStationId;
32   /**
33    * Base Station Latitude for CDMA networks.
34    *
35    * Possible ranges from -1296000 to 1296000.
36    * -2147483648 if the latitude is unknown.
37    *
38    * @see 3GPP2 C.S0005-A v6.0.
39    */
40   readonly attribute long cdmaBaseStationLatitude;
42   /**
43    * Base Station Longitude for CDMA networks.
44    *
45    * Possible ranges from -2592000 to 2592000.
46    * -2147483648 if the longitude is unknown.
47    *
48    * @see 3GPP2 C.S0005-A v6.0.
49    */
50   readonly attribute long cdmaBaseStationLongitude;
52   /**
53    * System ID for CDMA networks.
54    *
55    * Possible ranges from 0 to 32767.
56    * -1 if the system id is unknown.
57    */
58   readonly attribute long cdmaSystemId;
60   /**
61    * Network ID for CDMA networks.
62    *
63    * Possible ranges from 0 to 65535.
64    * -1 if the network id is unknown.
65    */
66   readonly attribute long cdmaNetworkId;