Bug 1627040 - Check for corrupt JARs later in startup r=mconley

Differential Revision: https://phabricator.services.mozilla.com/D69428

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Doug Thayer 2020-04-02 19:10:32 +00:00
parent e4d93049ab
commit 4c544f2ece

View File

@ -2228,13 +2228,6 @@ BrowserGlue.prototype = {
},
},
{
condition: Services.prefs.getBoolPref("corroborator.enabled", false),
task: () => {
Corroborate.init().catch(Cu.reportError);
},
},
// request startup of Chromium remote debugging protocol
// (observer will only be notified when --remote-debugger is passed)
{
@ -2368,6 +2361,12 @@ BrowserGlue.prototype = {
() => {
RemoteSecuritySettings.init();
},
() => {
if (Services.prefs.getBoolPref("corroborator.enabled", false)) {
Corroborate.init().catch(Cu.reportError);
}
},
];
for (let task of idleTasks) {