Bug 828713 - soundtouch_config.h checks the non-existing MOZ_SAMPLE_TYPE_S16LE symbol...
[gecko.git] / dom / telephony / nsIDOMVoicemail.idl
blobc9cdcb4cb613a593e604e2d2001b7be1ec7b030a
1 /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
2 /* vim: set ts=2 et sw=2 tw=40: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "nsIDOMEventTarget.idl"
9 interface nsIDOMMozVoicemailStatus;
11 [scriptable, builtinclass, uuid(c343eb25-9dc8-49a8-a70f-58a0337b3f6e)]
12 interface nsIDOMMozVoicemail : nsIDOMEventTarget
14 /**
15 * The current voicemail status, or null when the status is unknown
17 readonly attribute nsIDOMMozVoicemailStatus status;
19 /**
20 * The voicemail box dialing number, or null if one wasn't found
22 readonly attribute DOMString number;
24 /**
25 * The display name of the voicemail box dialing number, or null if one
26 * wasn't found
28 readonly attribute DOMString displayName;
30 /**
31 * The current voicemail status has changed
33 [implicit_jscontext] attribute jsval onstatuschanged;