forked from mirrors/gecko-dev
		
	 c65fe995c1
			
		
	
	
		c65fe995c1
		
	
	
	
	
		
			
			We import the ActorConstants into the ASRouter unit-entry.js script because ASRouterChild.sys.mjs loads ActorConstants.sys.mjs, and the ResourceUriPlugin that does the rewriting for the Karma tests doesn't understand how to do remapping outside of the newtab folder. So instead of trying to hack that capability into ResourceUriPlugin, we just import the ActorConstants into the Karma global scope. Differential Revision: https://phabricator.services.mozilla.com/D200087
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* 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;
 | |
| }, {});
 |