mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f19a207980
--HG-- rename : dom/telephony/Makefile.in => dom/voicemail/Makefile.in rename : dom/telephony/Voicemail.cpp => dom/voicemail/Voicemail.cpp rename : dom/telephony/Voicemail.h => dom/voicemail/Voicemail.h rename : dom/telephony/VoicemailEvent.cpp => dom/voicemail/VoicemailEvent.cpp rename : dom/telephony/VoicemailEvent.h => dom/voicemail/VoicemailEvent.h rename : dom/telephony/nsIDOMVoicemail.idl => dom/voicemail/nsIDOMMozVoicemail.idl rename : dom/telephony/nsIDOMVoicemailEvent.idl => dom/voicemail/nsIDOMMozVoicemailEvent.idl rename : dom/telephony/nsIDOMVoicemailStatus.idl => dom/voicemail/nsIDOMMozVoicemailStatus.idl rename : dom/telephony/nsIDOMNavigatorTelephony.idl => dom/voicemail/nsINavigatorVoicemail.idl rename : dom/telephony/test/marionette/pdu_builder.js => dom/voicemail/test/marionette/pdu_builder.js rename : dom/telephony/test/marionette/test_voicemail_number.js => dom/voicemail/test/marionette/test_voicemail_number.js rename : dom/telephony/test/marionette/test_voicemail_statuschanged.js => dom/voicemail/test/marionette/test_voicemail_statuschanged.js rename : dom/telephony/test/marionette/test_voicemail_statuschanged.py => dom/voicemail/test/marionette/test_voicemail_statuschanged.py
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=40: */
|
|
/* 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 "nsIDOMEventTarget.idl"
|
|
|
|
interface nsIDOMMozVoicemailStatus;
|
|
|
|
[scriptable, builtinclass, uuid(c343eb25-9dc8-49a8-a70f-58a0337b3f6e)]
|
|
interface nsIDOMMozVoicemail : nsIDOMEventTarget
|
|
{
|
|
/**
|
|
* The current voicemail status, or null when the status is unknown
|
|
*/
|
|
readonly attribute nsIDOMMozVoicemailStatus status;
|
|
|
|
/**
|
|
* The voicemail box dialing number, or null if one wasn't found
|
|
*/
|
|
readonly attribute DOMString number;
|
|
|
|
/**
|
|
* The display name of the voicemail box dialing number, or null if one
|
|
* wasn't found
|
|
*/
|
|
readonly attribute DOMString displayName;
|
|
|
|
/**
|
|
* The current voicemail status has changed
|
|
*/
|
|
[implicit_jscontext] attribute jsval onstatuschanged;
|
|
};
|