Bug 968093 - Fix JavaScript error: "this._processNextMessage is not a function". r=hsinyi

This commit is contained in:
Edgar Chen 2014-02-06 11:32:27 +08:00
Родитель b77bf22e98
Коммит d7344f5a62
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -664,7 +664,8 @@ XPCOMUtils.defineLazyGetter(this, "gRadioEnabledController", function() {
if (!this.timer) {
this.timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
}
this.timer.initWithCallback(this._executeRequest, RADIO_POWER_OFF_TIMEOUT,
this.timer.initWithCallback(this._executeRequest.bind(this),
RADIO_POWER_OFF_TIMEOUT,
Ci.nsITimer.TYPE_ONE_SHOT);
},