diff -r 000000000000 -r 6474c204b198 dom/voicemail/nsIVoicemailProvider.idl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/voicemail/nsIVoicemailProvider.idl Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,41 @@ +/* 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" + +interface nsIDOMMozVoicemailStatus; + +[scriptable, uuid(214b0963-da48-4859-a56c-f065a90e0403)] +interface nsIVoicemailListener : nsISupports +{ + /** + * Called when a voicemail notification has been received by the network. + * + * @param status + * The new voicemail status + */ + void notifyStatusChanged(in nsIDOMMozVoicemailStatus status); +}; + +/** + * XPCOM component (in the content process) that provides the voicemail + * information. + */ +[scriptable, uuid(1bbfff90-88f7-4d73-896e-9620a0000ab0)] +interface nsIVoicemailProvider : nsISupports +{ + readonly attribute unsigned long voicemailDefaultServiceId; + + /** + * Called when a content process registers receiving unsolicited messages from + * RadioInterfaceLayer in the chrome process. Only a content process that has + * the 'voicemail' permission is allowed to register. + */ + void registerVoicemailMsg(in nsIVoicemailListener listener); + void unregisterVoicemailMsg(in nsIVoicemailListener listener); + + nsIDOMMozVoicemailStatus getVoicemailStatus(in unsigned long clientId); + DOMString getVoicemailNumber(in unsigned long clientId); + DOMString getVoicemailDisplayName(in unsigned long clientId); +};