--- chrome/browser/enterprise/signals/context_info_fetcher.cc.orig 2026-03-13 16:54:03 UTC +++ chrome/browser/enterprise/signals/context_info_fetcher.cc @@ -184,6 +184,8 @@ SettingValue ContextInfoFetcher::GetOSFirewall() { SettingValue ContextInfoFetcher::GetOSFirewall() { #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) return device_signals::GetOSFirewall(); +#elif BUILDFLAG(IS_OPENBSD) + return SettingValue::ENABLED; #elif BUILDFLAG(IS_CHROMEOS) return GetChromeosFirewall(); #else @@ -203,7 +205,7 @@ std::vector ContextInfoFetcher::GetDnsSer #endif // BUILDFLAG(IS_LINUX) std::vector ContextInfoFetcher::GetDnsServers() { -#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD) return device_signals::GetSystemDnsServers(); #else return std::vector();