mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
Security: https://vuxml.freebsd.org/freebsd/2a3be628-ef6e-11ef-85f3-a8a1599412c6.html Security: https://vuxml.freebsd.org/freebsd/f572b9d1-ef6d-11ef-85f3-a8a1599412c6.html Security: https://vuxml.freebsd.org/freebsd/b09d0b3b-ef6d-11ef-85f3-a8a1599412c6.html
21 lines
756 B
C++
21 lines
756 B
C++
--- content/gpu/gpu_child_thread.cc.orig 2025-02-19 07:43:18 UTC
|
|
+++ content/gpu/gpu_child_thread.cc
|
|
@@ -57,7 +57,7 @@
|
|
#include "third_party/skia/include/ports/SkFontConfigInterface.h"
|
|
#endif
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
#include "content/child/sandboxed_process_thread_type_handler.h"
|
|
#endif
|
|
|
|
@@ -147,7 +147,8 @@ void GpuChildThread::Init(const base::TimeTicks& proce
|
|
|
|
viz_main_.gpu_service()->set_start_time(process_start_time);
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+// XXX BSD
|
|
+#if (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)) && !BUILDFLAG(IS_BSD)
|
|
SandboxedProcessThreadTypeHandler::NotifyMainChildThreadCreated();
|
|
#endif
|
|
|