aboutsummaryrefslogtreecommitdiff
path: root/devel/electron33/files/patch-services_device_usb_usb__service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron33/files/patch-services_device_usb_usb__service.cc')
-rw-r--r--devel/electron33/files/patch-services_device_usb_usb__service.cc35
1 files changed, 0 insertions, 35 deletions
diff --git a/devel/electron33/files/patch-services_device_usb_usb__service.cc b/devel/electron33/files/patch-services_device_usb_usb__service.cc
deleted file mode 100644
index 72460a029788..000000000000
--- a/devel/electron33/files/patch-services_device_usb_usb__service.cc
+++ /dev/null
@@ -1,35 +0,0 @@
---- services/device/usb/usb_service.cc.orig 2024-08-14 20:55:10 UTC
-+++ services/device/usb/usb_service.cc
-@@ -21,12 +21,16 @@
-
- #if BUILDFLAG(IS_ANDROID)
- #include "services/device/usb/usb_service_android.h"
--#elif defined(USE_UDEV)
-+#elif defined(USE_UDEV) && !BUILDFLAG(IS_BSD)
- #include "services/device/usb/usb_service_linux.h"
- #elif BUILDFLAG(IS_MAC)
- #include "services/device/usb/usb_service_impl.h"
- #elif BUILDFLAG(IS_WIN)
- #include "services/device/usb/usb_service_win.h"
-+#elif BUILDFLAG(IS_OPENBSD)
-+#include "services/device/usb/usb_service_impl.h"
-+#elif BUILDFLAG(IS_FREEBSD)
-+#include "services/device/usb/usb_service_fake.h"
- #endif
-
- namespace device {
-@@ -49,11 +53,13 @@ std::unique_ptr<UsbService> UsbService::Create() {
- std::unique_ptr<UsbService> UsbService::Create() {
- #if BUILDFLAG(IS_ANDROID)
- return base::WrapUnique(new UsbServiceAndroid());
--#elif defined(USE_UDEV)
-+#elif defined(USE_UDEV) && !BUILDFLAG(IS_BSD)
- return base::WrapUnique(new UsbServiceLinux());
- #elif BUILDFLAG(IS_WIN)
- return base::WrapUnique(new UsbServiceWin());
- #elif BUILDFLAG(IS_MAC)
-+ return base::WrapUnique(new UsbServiceImpl());
-+#elif BUILDFLAG(IS_BSD)
- return base::WrapUnique(new UsbServiceImpl());
- #else
- return nullptr;