зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1253215 - Initialize RequestSyncService only if its pref is enabled, r=ehsan
This commit is contained in:
Родитель
b5a255ff58
Коммит
451a5e300c
|
@ -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));
|
||||
|
|
Загрузка…
Ссылка в новой задаче