blob: cd983e2a7a7c3b31ad2cf8c0a225103cca93bae6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- device/gamepad/gamepad_provider.cc.orig 2021-12-14 11:45:06 UTC
+++ device/gamepad/gamepad_provider.cc
@@ -216,7 +216,7 @@ void GamepadProvider::Initialize(std::unique_ptr<Gamep
if (!polling_thread_)
polling_thread_ = std::make_unique<base::Thread>("Gamepad polling thread");
-#if defined(OS_LINUX) || defined(OS_CHROMEOS)
+#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_BSD)
// On Linux, the data fetcher needs to watch file descriptors, so the message
// loop needs to be a libevent loop.
const base::MessagePumpType kMessageLoopType = base::MessagePumpType::IO;
|