Bug 1877957 p4: Enable untrusted integrity for content process sandbox on Nightly. r=handyman

Differential Revision: https://phabricator.services.mozilla.com/D200796
This commit is contained in:
Bob Owen
2024-02-08 17:26:21 +00:00
parent 8c1b009578
commit 21ad4e0583

View File

@@ -1404,7 +1404,11 @@ pref("browser.bookmarks.editDialog.maxRecentFolders", 7);
// On windows these levels are:
// See - security/sandbox/win/src/sandboxbroker/sandboxBroker.cpp
// SetSecurityLevelForContentProcess() for what the different settings mean.
pref("security.sandbox.content.level", 6);
#if defined(NIGHTLY_BUILD)
pref("security.sandbox.content.level", 7);
#else
pref("security.sandbox.content.level", 6);
#endif
// Pref controlling if messages relevant to sandbox violations are logged.
pref("security.sandbox.logging.enabled", false);