Differential Revision: https://phabricator.services.mozilla.com/D188240
This commit is contained in:
Marco Bonardo 2023-09-15 07:42:28 +00:00
Родитель 77fe6109bb
Коммит cbc882b7c4
3 изменённых файлов: 10 добавлений и 2 удалений

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

@ -181,6 +181,8 @@ const char* const ApplicationReputationService::kBinaryFileExtensions[] = {
".applescript",
//".application", exec // MS ClickOnce
//".appref-ms", exec // MS ClickOnce
//".appx", exec
//".appxbundle", exec
//".arc",
//".arj",
".as", // Mac archive
@ -334,6 +336,8 @@ const char* const ApplicationReputationService::kBinaryFileExtensions[] = {
//".msh2xml", exec // Windows shell
//".mshxml", exec // Windows
//".msi", exec // Windows installer
//".msix", exec
//".msixbundle", exec
//".msp", exec // Windows installer
//".mst", exec // Windows installer
".ndif", // Mac disk image

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

@ -42,6 +42,8 @@ const char* const sExecutableExts[] = {
".app", // executable application
".application", // from bug 348763
".appref-ms", // ClickOnce link
".appx",
".appxbundle",
".asp",
".atloc", // Appletalk Location
".bas",
@ -96,6 +98,8 @@ const char* const sExecutableExts[] = {
".msh2xml", // Microsoft Shell
".mshxml", // Microsoft Shell
".msi",
".msix",
".msixbundle",
".msp",
".mst",
".ops", // Office Profile Settings

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

@ -8,9 +8,9 @@
#define _NS_LOCAL_FILE_COMMON_H_
#ifdef MOZ_ESR
extern const char* const sExecutableExts[103];
extern const char* const sExecutableExts[107];
#else
extern const char* const sExecutableExts[104];
extern const char* const sExecutableExts[108];
#endif
#endif