summaryrefslogtreecommitdiffstats
path: root/browser/components/asrouter/modules/ActorConstants.sys.mjs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
commitd8bbc7858622b6d9c278469aab701ca0b609cddf (patch)
treeeff41dc61d9f714852212739e6b3738b82a2af87 /browser/components/asrouter/modules/ActorConstants.sys.mjs
parentReleasing progress-linux version 125.0.3-1~progress7.99u1. (diff)
downloadfirefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz
firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/asrouter/modules/ActorConstants.sys.mjs')
-rw-r--r--browser/components/asrouter/modules/ActorConstants.sys.mjs49
1 files changed, 0 insertions, 49 deletions
diff --git a/browser/components/asrouter/modules/ActorConstants.sys.mjs b/browser/components/asrouter/modules/ActorConstants.sys.mjs
deleted file mode 100644
index 4c996552ab..0000000000
--- a/browser/components/asrouter/modules/ActorConstants.sys.mjs
+++ /dev/null
@@ -1,49 +0,0 @@
-/* vim: set ts=2 sw=2 sts=2 et tw=80: */
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-export const MESSAGE_TYPE_LIST = [
- "BLOCK_MESSAGE_BY_ID",
- "USER_ACTION",
- "IMPRESSION",
- "TRIGGER",
- // PB is Private Browsing
- "PBNEWTAB_MESSAGE_REQUEST",
- "DOORHANGER_TELEMETRY",
- "TOOLBAR_BADGE_TELEMETRY",
- "TOOLBAR_PANEL_TELEMETRY",
- "MOMENTS_PAGE_TELEMETRY",
- "INFOBAR_TELEMETRY",
- "SPOTLIGHT_TELEMETRY",
- "TOAST_NOTIFICATION_TELEMETRY",
- "AS_ROUTER_TELEMETRY_USER_EVENT",
-
- // Admin types
- "ADMIN_CONNECT_STATE",
- "UNBLOCK_MESSAGE_BY_ID",
- "UNBLOCK_ALL",
- "BLOCK_BUNDLE",
- "UNBLOCK_BUNDLE",
- "DISABLE_PROVIDER",
- "ENABLE_PROVIDER",
- "EVALUATE_JEXL_EXPRESSION",
- "EXPIRE_QUERY_CACHE",
- "FORCE_ATTRIBUTION",
- "FORCE_WHATSNEW_PANEL",
- "FORCE_PRIVATE_BROWSING_WINDOW",
- "CLOSE_WHATSNEW_PANEL",
- "OVERRIDE_MESSAGE",
- "MODIFY_MESSAGE_JSON",
- "RESET_PROVIDER_PREF",
- "SET_PROVIDER_USER_PREF",
- "RESET_GROUPS_STATE",
- "RESET_MESSAGE_STATE",
- "RESET_SCREEN_IMPRESSIONS",
- "EDIT_STATE",
-];
-
-export const MESSAGE_TYPE_HASH = MESSAGE_TYPE_LIST.reduce((hash, value) => {
- hash[value] = value;
- return hash;
-}, {});