gecko-dev/dom/telephony/nsIGonkTelephonyService.idl
Szu-Yu Chen [:aknow] 5f28f32418 Bug 1137093 - Part 07: Use notifyCurrentCalls (idl). r=hsinyi
--HG--
extra : rebase_source : 83d224c71793d5a60fcb4f95f965f03f2d444091
2015-03-24 18:04:49 +08:00

28 lines
995 B
Plaintext

/* -*- Mode: idl; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 "nsITelephonyService.idl"
%{C++
#define GONK_TELEPHONY_SERVICE_CONTRACTID \
"@mozilla.org/telephony/gonktelephonyservice;1"
%}
[scriptable, uuid(d287e11a-0a65-4456-b481-c63d62afdb5d)]
interface nsIGonkTelephonyService : nsITelephonyService
{
void notifyCallRing();
void notifyCurrentCalls(in unsigned long clientId, in jsval calls);
void notifyCdmaCallWaiting(in unsigned long clientId, in jsval waitingCall);
void notifySupplementaryService(in unsigned long clientId, in AString number,
in AString notification);
void notifyUssdReceived(in unsigned long clientId, in DOMString message,
in boolean sessionEnded);
};