Bug 1253215 - Initialize RequestSyncService only if its pref is enabled, r=ehsan

This commit is contained in:
Andrea Marchesini 2016-03-03 18:30:16 +01:00
Родитель b5a255ff58
Коммит 451a5e300c
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -87,6 +87,10 @@ this.RequestSyncService = {
init: function() {
debug("init");
if (!Services.prefs.getBoolPref("dom.requestSync.enabled")) {
return;
}
this._messages.forEach((function(msgName) {
ppmm.addMessageListener(msgName, this);
}).bind(this));