blob: 7b01b9202548c1a329fd67b47362b41700a540b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- components/system_cpu/cpu_probe.cc.orig 2024-02-25 20:22:18 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)
|