blob: 2146462d9b25c5cd79d404c3984e5d3090e4b885 (
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-01-26 00:49:13 UTC
+++ content/gpu/gpu_child_thread.cc
@@ -383,6 +383,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.
@@ -434,6 +435,7 @@ void GpuChildThread::OnCollectGraphicsIn
base::MessageLoop::current()->QuitWhenIdle();
}
#endif // OS_WIN
+#endif // XXX(rene) !FreeBSD
}
void GpuChildThread::OnGetVideoMemoryUsageStats() {
|