зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
821 B
Plaintext
21 строка
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);
|
|
};
|