mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
75add2d01e
--HG-- extra : rebase_source : d88628e55aef0c92e711643a63657855a74ad87f extra : histedit_source : 6e72eb3947c97742509c35de0a46e79df246bc94
92 lines
2.6 KiB
Plaintext
92 lines
2.6 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"
|
|
#include "nsINetworkManager.idl"
|
|
|
|
interface nsIIccInfo;
|
|
interface nsIMobileConnectionInfo;
|
|
interface nsIMobileMessageCallback;
|
|
|
|
[scriptable, uuid(6e0f45b8-410e-11e3-8c8e-b715b2cd0128)]
|
|
interface nsIRilNetworkInterface : nsINetworkInterface
|
|
{
|
|
readonly attribute unsigned long serviceId;
|
|
readonly attribute DOMString iccId;
|
|
|
|
/* The following attributes are for MMS proxy settings. */
|
|
readonly attribute DOMString mmsc; // Empty string if not set.
|
|
readonly attribute DOMString mmsProxy; // Empty string if not set.
|
|
readonly attribute long mmsPort; // -1 if not set.
|
|
};
|
|
|
|
[scriptable, uuid(4441e660-4ad0-11e4-916c-0800200c9a66)]
|
|
interface nsIRilContext : nsISupports
|
|
{
|
|
/**
|
|
* One of the nsIIcc.CARD_STATE_* values.
|
|
*/
|
|
readonly attribute unsigned long cardState;
|
|
|
|
readonly attribute DOMString imsi;
|
|
|
|
readonly attribute nsIIccInfo iccInfo;
|
|
};
|
|
|
|
[scriptable, function, uuid(3bc96351-53b0-47a1-a888-c74c64b60f25)]
|
|
interface nsIRilSendWorkerMessageCallback : nsISupports
|
|
{
|
|
boolean handleResponse(in jsval response);
|
|
};
|
|
|
|
[scriptable, uuid(fe01c648-867a-11e4-915f-033b36e8177b)]
|
|
interface nsIRadioInterface : nsISupports
|
|
{
|
|
readonly attribute nsIRilContext rilContext;
|
|
|
|
/**
|
|
* PDP APIs
|
|
*
|
|
* @param networkType
|
|
* Mobile network type, that is, nsINetworkInterface.NETWORK_TYPE_MOBILE
|
|
* or one of the nsINetworkInterface.NETWORK_TYPE_MOBILE_* values.
|
|
*/
|
|
void setupDataCallByType(in long networkType);
|
|
void deactivateDataCallByType(in long networkType);
|
|
long getDataCallStateByType(in long networkType);
|
|
|
|
void updateRILNetworkInterface();
|
|
|
|
void sendWorkerMessage(in DOMString type,
|
|
[optional] in jsval message,
|
|
[optional] in nsIRilSendWorkerMessageCallback callback);
|
|
};
|
|
|
|
[scriptable, uuid(78b65e8c-68e7-4510-9a05-65bba12b283e)]
|
|
interface nsIRadioInterfaceLayer : nsISupports
|
|
{
|
|
readonly attribute unsigned long numRadioInterfaces;
|
|
|
|
nsIRadioInterface getRadioInterface(in unsigned long clientId);
|
|
|
|
/**
|
|
* Select a proper client for dialing emergency call.
|
|
*
|
|
* @return clientId or -1 if none of the clients are avaialble.
|
|
*/
|
|
unsigned long getClientIdForEmergencyCall();
|
|
|
|
void setMicrophoneMuted(in boolean muted);
|
|
};
|
|
|
|
|
|
/**
|
|
* Helper Interface to define new APIs of nsIRadioInterfaceLayer during
|
|
* ril-interfaces frozen phase.
|
|
*/
|
|
[scriptable, uuid(f8ec63da-c22e-11e4-89f3-b767dae42a13)]
|
|
interface nsIRadioInterfaceLayer_new : nsIRadioInterfaceLayer
|
|
{
|
|
};
|