Bug 932630 - [NetworkStats API] Need to fix saveAppStats(...) in test_networkstats_service_proxy.js. r=gene

This commit is contained in:
John Shih 2013-10-30 14:55:28 +08:00
Родитель 091bb44eef
Коммит 74a09cdf5a
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -31,6 +31,13 @@ NetworkStatsServiceProxy.prototype = {
*/
saveAppStats: function saveAppStats(aAppId, aNetwork, aTimeStamp,
aRxBytes, aTxBytes, aCallback) {
if (!aNetwork) {
if (DEBUG) {
debug("|aNetwork| is not specified. Failed to save stats. Returning.");
}
return;
}
if (DEBUG) {
debug("saveAppStats: " + aAppId + " connectionType " + aNetwork.type +
" " + aTimeStamp + " " + aRxBytes + " " + aTxBytes);