aboutsummaryrefslogtreecommitdiff
path: root/devel/electron29/files/patch-components_system__cpu_cpu__probe.cc
blob: c942af31f03e060d2e747e0721982c3aad8abeb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- components/system_cpu/cpu_probe.cc.orig	2024-02-21 00:20:43 UTC
+++ components/system_cpu/cpu_probe.cc
@@ -30,6 +30,9 @@ std::unique_ptr<CpuProbe> CpuProbe::Create() {
   return CpuProbeWin::Create();
 #elif BUILDFLAG(IS_MAC)
   return CpuProbeMac::Create();
+#elif BUILDFLAG(IS_BSD)
+  NOTIMPLEMENTED();
+  return nullptr;
 #else
   return nullptr;
 #endif  // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)