mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
28 lines
995 B
Plaintext
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(8653d76b-6805-41d2-8ea5-3b14fb4e682d)]
|
|
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);
|
|
};
|