Bug 978709 - 2.e/6: remove unused data call enumeration stuff. r=hsinyi

This commit is contained in:
Vicamo Yang 2014-03-29 15:18:14 +08:00
parent c763a82d83
commit e08eee5c24
2 changed files with 0 additions and 21 deletions

View File

@ -1552,12 +1552,6 @@ DataConnectionHandler.prototype = {
}
}
},
/**
* Handle data call list.
*/
handleDataCallList: function(message) {
},
};
function RadioInterfaceLayer() {
@ -2151,9 +2145,6 @@ RadioInterface.prototype = {
}
connHandler.handleDataCallState(message);
break;
case "datacalllist":
connHandler.handleDataCallList(message);
break;
case "emergencyCbModeChange":
this.handleEmergencyCbModeChange(message);
break;

View File

@ -5042,18 +5042,6 @@ RilObject.prototype = {
this.sendChromeMessage(options);
},
/**
* Get a list of current data calls.
*/
enumerateDataCalls: function() {
let datacall_list = [];
for each (let datacall in this.currentDataCalls) {
datacall_list.push(datacall);
}
this.sendChromeMessage({rilMessageType: "datacalllist",
datacalls: datacall_list});
},
/**
* Process STK Proactive Command.
*/