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
Родитель cf68aca1e4
Коммит 7686c61ee9
2 изменённых файлов: 0 добавлений и 21 удалений

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

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

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

@ -5042,18 +5042,6 @@ RilObject.prototype = {
this.sendChromeMessage(options); 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. * Process STK Proactive Command.
*/ */