mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-19 18:38:36 +00:00
21 lines
821 B
Plaintext
21 lines
821 B
Plaintext
|
/* 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 "nsIIccService.idl"
|
||
|
|
||
|
%{C++
|
||
|
#define GONK_ICC_SERVICE_CONTRACTID \
|
||
|
"@mozilla.org/icc/gonkiccservice;1"
|
||
|
%}
|
||
|
|
||
|
[scriptable, uuid(cdcdd800-ef24-11e4-99e7-1f0f5f2576c5)]
|
||
|
interface nsIGonkIccService : nsIIccService
|
||
|
{
|
||
|
void notifyStkCommand(in unsigned long aServiceId, in nsIStkProactiveCmd aStkcommand);
|
||
|
void notifyStkSessionEnd(in unsigned long aServiceId);
|
||
|
void notifyCardStateChanged(in unsigned long aServiceId, in unsigned long aCardState);
|
||
|
void notifyIccInfoChanged(in unsigned long aServiceId, in jsval aIccInfo);
|
||
|
void notifyImsiChanged(in unsigned long aServiceId, in DOMString aImsi);
|
||
|
};
|