summaryrefslogtreecommitdiffstats
path: root/ipc/glue
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-02-20 10:11:31 +0100
committerwolfbeast <mcwerewolf@gmail.com>2018-02-20 10:11:31 +0100
commita930db1c9e8444ed89754c5a79085d59c7295952 (patch)
tree220e93e98eaa08ce0987bac359600aec7e83de74 /ipc/glue
parentf1e863a490ae20173210a53f516e146ebc677a36 (diff)
downloadUXP-a930db1c9e8444ed89754c5a79085d59c7295952.tar
UXP-a930db1c9e8444ed89754c5a79085d59c7295952.tar.gz
UXP-a930db1c9e8444ed89754c5a79085d59c7295952.tar.lz
UXP-a930db1c9e8444ed89754c5a79085d59c7295952.tar.xz
UXP-a930db1c9e8444ed89754c5a79085d59c7295952.zip
Remove more Vista checks in ipc code
Diffstat (limited to 'ipc/glue')
-rw-r--r--ipc/glue/WindowsMessageLoop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/glue/WindowsMessageLoop.cpp b/ipc/glue/WindowsMessageLoop.cpp
index 8057ee25d..8f3471efc 100644
--- a/ipc/glue/WindowsMessageLoop.cpp
+++ b/ipc/glue/WindowsMessageLoop.cpp
@@ -1034,7 +1034,7 @@ MessageChannel::WaitForSyncNotify(bool aHandleWindowsMessages)
MOZ_ASSERT(gUIThreadId, "InitUIThread was not called!");
#if defined(ACCESSIBILITY)
- if (IsVistaOrLater() && (mFlags & REQUIRE_A11Y_REENTRY)) {
+ if (mFlags & REQUIRE_A11Y_REENTRY) {
MOZ_ASSERT(!(mFlags & REQUIRE_DEFERRED_MESSAGE_PROTECTION));
return WaitForSyncNotifyWithA11yReentry();
}