aboutsummaryrefslogtreecommitdiff
path: root/devel/electron35/files/patch-remoting_host_host__details.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron35/files/patch-remoting_host_host__details.cc')
-rw-r--r--devel/electron35/files/patch-remoting_host_host__details.cc29
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/electron35/files/patch-remoting_host_host__details.cc b/devel/electron35/files/patch-remoting_host_host__details.cc
deleted file mode 100644
index d63c78a9f047..000000000000
--- a/devel/electron35/files/patch-remoting_host_host__details.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- remoting/host/host_details.cc.orig 2025-03-24 20:50:14 UTC
-+++ remoting/host/host_details.cc
-@@ -7,7 +7,7 @@
- #include "base/system/sys_info.h"
- #include "build/build_config.h"
-
--#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
-+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
- #include "base/linux_util.h"
- #endif
-
-@@ -22,7 +22,7 @@ std::string GetHostOperatingSystemName() {
- return "Mac";
- #elif BUILDFLAG(IS_CHROMEOS)
- return "ChromeOS";
--#elif BUILDFLAG(IS_LINUX)
-+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- return "Linux";
- #elif BUILDFLAG(IS_ANDROID)
- return "Android";
-@@ -34,7 +34,7 @@ std::string GetHostOperatingSystemVersion() {
- // Get the host Operating System Version, removing the need to check for OS
- // definitions and keeps the format used consistent.
- std::string GetHostOperatingSystemVersion() {
--#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
-+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
- return base::GetLinuxDistro();
- #else
- return base::SysInfo::OperatingSystemVersion();