Bug 1727271: part 3) const-qualify `Document::HasValidTransientUserGestureActivation...
[gecko.git] / tools / quitter / background.js
bloba915d953f9930073f60dca4daf0e7d8dbbe89d3d
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 /* eslint-env webextensions */
9 browser.runtime.onMessage.addListener(msg => {
10   if (msg === "quit") {
11     browser.quitter.quit();
12   }
13 });