blob: 6e35e0a9ab3dceda9a9e0d3e5d92093e59089f8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- content/gpu/gpu_child_thread.cc.orig 2017-03-09 20:04:32 UTC
+++ content/gpu/gpu_child_thread.cc
@@ -387,6 +387,7 @@ void GpuChildThread::OnCollectGraphicsIn
if (dead_on_arrival_)
return;
+#if !defined(OS_BSD)
#if defined(OS_WIN)
// GPU full info collection should only happen on un-sandboxed GPU process
// or single process/in-process gpu mode on Windows.
@@ -438,6 +439,7 @@ void GpuChildThread::OnCollectGraphicsIn
base::MessageLoop::current()->QuitWhenIdle();
}
#endif // OS_WIN
+#endif // XXX(rene) !FreeBSD
}
void GpuChildThread::OnGetVideoMemoryUsageStats() {
|