Bug 1620364 - Always register for :CloseTab. r=droeh

Mistakenly removed these lines which are still needed until we remove the
deprecated API.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Agi Sferro 2020-03-05 20:04:43 +00:00
Родитель d58c4c95ae
Коммит dca4a3c098
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -816,6 +816,11 @@ public class WebExtension {
public Listener(final GeckoSession session) {
this(session, null);
// TODO: remove Bug 1618987
// Close tab event is forwarded to the main listener so we need to listen
// to it here.
mEventDispatcher.registerUiThreadListener(this,
"GeckoView:WebExtension:CloseTab");
}
private Listener(final GeckoSession session, final GeckoRuntime runtime) {