tenfourfox/dom/telephony/nsITelephonyAudioService.idl
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

32 lines
783 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 "nsISupports.idl"
[scriptable, uuid(a452c565-fbac-4056-a8f4-feee9b33aa6e)]
interface nsITelephonyAudioService : nsISupports
{
const long PHONE_STATE_NORMAL = 0;
const long PHONE_STATE_RINGTONE = 1;
const long PHONE_STATE_IN_CALL = 2;
/**
* Microphone muted?
*/
attribute boolean microphoneMuted;
/**
* Speaker enabled?
*/
attribute boolean speakerEnabled;
/**
* Set the phone's audio mode.
*
* @param state
* One of the nsITelephonyAudioService::PHONE_STATE_* values.
*/
void setPhoneState(in long state);
};