blob: af2e6818def8031130a6ee00ad86499de077e753 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- remoting/host/host_details.cc.orig 2025-03-09 21:38:10 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 GetHostOperatingSystemName() {
// 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();
|