Bug 1530979 - Send custom "marionette-startup-requested" observer notification to start Marionette in Firefox. r=florian

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Henrik Skupin 2019-03-15 12:51:05 +00:00
Родитель 9d2993d1b3
Коммит 18bb002f88
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -1725,6 +1725,11 @@ BrowserGlue.prototype = {
Services.tm.idleDispatchToMainThread(() => {
TabUnloader.init();
});
// Marionette needs to be initialized as very last step
Services.tm.idleDispatchToMainThread(() => {
Services.obs.notifyObservers(null, "marionette-startup-requested");
});
},
/**