diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-02-19 12:22:05 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-19 12:22:05 +0100 |
commit | 21b17fb22cb0dd094367b973562c365510c02b5e (patch) | |
tree | 01f5a864b6164fd8b33cdfe3cf13cc3121389bf4 /dom | |
parent | e02362ae3db9923fa4ec070dde45a226ffcd467b (diff) | |
download | uxp-21b17fb22cb0dd094367b973562c365510c02b5e.tar.gz |
Remove redundant Vista checks in dom/ipc
Diffstat (limited to 'dom')
-rw-r--r-- | dom/ipc/ContentProcess.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/dom/ipc/ContentProcess.cpp b/dom/ipc/ContentProcess.cpp index 66125f3322..2413d88087 100644 --- a/dom/ipc/ContentProcess.cpp +++ b/dom/ipc/ContentProcess.cpp @@ -8,10 +8,6 @@ #include "ContentProcess.h" -#if defined(XP_WIN) && defined(MOZ_CONTENT_SANDBOX) -#include "mozilla/WindowsVersion.h" -#endif - #if defined(XP_MACOSX) && defined(MOZ_CONTENT_SANDBOX) #include <stdlib.h> #endif @@ -33,9 +29,8 @@ static bool IsSandboxTempDirRequired() { // On Windows, a sandbox-writable temp directory is only used - // for Vista or later with sandbox pref level >= 1. - return (IsVistaOrLater() && - (Preferences::GetInt("security.sandbox.content.level") >= 1)); + // when sandbox pref level >= 1. + return Preferences::GetInt("security.sandbox.content.level") >= 1; } static void |