Bug 814625 - Part 8: RIL: Add multisim support. r=hsinyi

This commit is contained in:
Szu-Yu Chen [:aknow] 2013-10-31 08:05:52 -04:00
Родитель f842d8f210
Коммит 1ccbe812aa
1 изменённых файлов: 7 добавлений и 6 удалений

Просмотреть файл

@ -1001,22 +1001,24 @@ RadioInterface.prototype = {
gTelephonyProvider.notifyCallRing();
break;
case "callStateChange":
gTelephonyProvider.notifyCallStateChanged(message.call);
gTelephonyProvider.notifyCallStateChanged(this.clientId, message.call);
break;
case "callDisconnected":
gTelephonyProvider.notifyCallDisconnected(message.call);
gTelephonyProvider.notifyCallDisconnected(this.clientId, message.call);
break;
case "conferenceCallStateChanged":
gTelephonyProvider.notifyConferenceCallStateChanged(message.state);
break;
case "cdmaCallWaiting":
gTelephonyProvider.notifyCdmaCallWaiting(message.number);
gTelephonyProvider.notifyCdmaCallWaiting(this.clientId, message.number);
break;
case "callError":
gTelephonyProvider.notifyCallError(message.callIndex, message.errorMsg);
gTelephonyProvider.notifyCallError(this.clientId, message.callIndex,
message.errorMsg);
break;
case "suppSvcNotification":
gTelephonyProvider.notifySupplementaryService(message.callIndex,
gTelephonyProvider.notifySupplementaryService(this.clientId,
message.callIndex,
message.notification);
break;
case "emergencyCbModeChange":
@ -3575,4 +3577,3 @@ RILNetworkInterface.prototype = {
};
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([RadioInterfaceLayer]);