Bug 1718269 Renamed event that opens screenshots UI from the extension.r=emalysz

Differential Revision: https://phabricator.services.mozilla.com/D118855
This commit is contained in:
Kajal Sah 2021-06-30 03:35:40 +00:00
Родитель 6e16c12b6b
Коммит 2549c209de
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1292,7 +1292,7 @@ class nsContextMenu {
takeScreenshot() {
if (!SCREENSHOT_BROWSER_COMPONENT) {
Services.obs.notifyObservers(null, "menuitem-screenshot", true);
Services.obs.notifyObservers(null, "menuitem-screenshot-extension", true);
}
}

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

@ -484,7 +484,7 @@ if (!screenshotsDisabled) {
l10nId: "screenshot-toolbarbutton",
onCommand(aEvent) {
if (!SCREENSHOT_BROWSER_COMPONENT) {
Services.obs.notifyObservers(null, "menuitem-screenshot");
Services.obs.notifyObservers(null, "menuitem-screenshot-extension");
}
},
onCreated(aNode) {

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

@ -6,7 +6,7 @@
"use strict";
const TOPIC = "menuitem-screenshot";
const TOPIC = "menuitem-screenshot-extension";
this.screenshots = class extends ExtensionAPI {
getAPI(context) {