diff options
Diffstat (limited to 'widget/GfxInfoBase.cpp')
-rw-r--r-- | widget/GfxInfoBase.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/widget/GfxInfoBase.cpp b/widget/GfxInfoBase.cpp index e53db69c5..c937f5099 100644 --- a/widget/GfxInfoBase.cpp +++ b/widget/GfxInfoBase.cpp @@ -37,10 +37,6 @@ #include "gfxConfig.h" #include "DriverCrashGuard.h" -#if defined(MOZ_CRASHREPORTER) -#include "nsExceptionHandler.h" -#endif - using namespace mozilla::widget; using namespace mozilla; using mozilla::MutexAutoLock; @@ -245,13 +241,7 @@ RemovePrefForDriverVersion() static OperatingSystem BlacklistOSToOperatingSystem(const nsAString& os) { - if (os.EqualsLiteral("WINNT 5.1")) - return OperatingSystem::WindowsXP; - else if (os.EqualsLiteral("WINNT 5.2")) - return OperatingSystem::WindowsServer2003; - else if (os.EqualsLiteral("WINNT 6.0")) - return OperatingSystem::WindowsVista; - else if (os.EqualsLiteral("WINNT 6.1")) + if (os.EqualsLiteral("WINNT 6.1")) return OperatingSystem::Windows7; else if (os.EqualsLiteral("WINNT 6.2")) return OperatingSystem::Windows8; |