Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 1d02324

Browse files
committed
Use correct message pump types
1 parent cf2e2ab commit 1d02324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ipc/chromium/src/base/message_loop.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# include "base/message_pump_libevent.h"
2828
#endif
2929
#if defined(XP_LINUX) || defined(__DragonFly__) || defined(XP_FREEBSD) || \
30-
defined(XP_NETBSD) || defined(XP_OPENBSD)
30+
defined(XP_NETBSD) || defined(XP_OPENBSD) || defined(XP_HAIKU)
3131
# if defined(MOZ_WIDGET_GTK)
3232
# include "base/message_pump_glib.h"
3333
# endif
@@ -281,7 +281,7 @@ MessageLoop::MessageLoop(Type type, nsISerialEventTarget* aEventTarget)
281281
# if defined(XP_DARWIN)
282282
pump_ = base::MessagePumpMac::Create();
283283
# elif defined(XP_LINUX) || defined(__DragonFly__) || defined(XP_FREEBSD) || \
284-
defined(XP_NETBSD) || defined(XP_OPENBSD)
284+
defined(XP_NETBSD) || defined(XP_OPENBSD) || defined(XP_HAIKU)
285285
pump_ = new base::MessagePumpForUI();
286286
# endif // XP_LINUX
287287
} else if (type_ == TYPE_IO) {

0 commit comments

Comments
 (0)