diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 0baa0623199d..1672848da01d 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -1032,7 +1032,7 @@ pref("dom.ipc.shims.enabledWarnings", false); // For information on what the level number means, see // SetSecurityLevelForGPUProcess() in // security/sandbox/win/src/sandboxbroker/sandboxBroker.cpp - pref("security.sandbox.gpu.level", 0); + pref("security.sandbox.gpu.level", 1); // Controls whether we disable win32k for the processes. // true means that win32k system calls are not permitted. diff --git a/ipc/glue/GeckoChildProcessHost.cpp b/ipc/glue/GeckoChildProcessHost.cpp index 2136e1c35e23..7a5c73dbd898 100644 --- a/ipc/glue/GeckoChildProcessHost.cpp +++ b/ipc/glue/GeckoChildProcessHost.cpp @@ -580,7 +580,7 @@ void GeckoChildProcessHost::PrepareLaunch() { mEnableSandboxLogging || !!PR_GetEnv("MOZ_SANDBOX_LOGGING"); if (ShouldHaveDirectoryService() && mProcessType == GeckoProcessType_GPU) { - mozilla::Unused << NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR, + mozilla::Unused << NS_GetSpecialDirectory(NS_APP_PROFILE_DIR_STARTUP, getter_AddRefs(mProfileDir)); } # endif