Bug 764503 - WifiStatusChangeEvent IDL and implementation don't match. r=mrbkap

This commit is contained in:
Gregor Wagner 2012-06-13 15:49:56 -07:00
parent 42fdab2c51
commit 2ebedb321b

View File

@ -252,8 +252,9 @@ DOMWifiManager.prototype = {
}
};
function WifiStatusChangeEvent(network) {
function WifiStatusChangeEvent(network, status) {
this.network = network;
this.status = status;
}
WifiStatusChangeEvent.prototype = {