$OpenBSD: patch-content_renderer_renderer_main_platform_delegate_linux_cc,v 1.8 2013/07/15 14:59:30 robert Exp $
--- content/renderer/renderer_main_platform_delegate_linux.cc.orig.port	Sun Jul  7 15:58:28 2013
+++ content/renderer/renderer_main_platform_delegate_linux.cc	Sun Jul  7 15:59:08 2013
@@ -41,7 +41,9 @@ bool RendererMainPlatformDelegate::EnableSandbox() {
   // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox
   //
   // Anything else is started in InitializeSandbox().
+#if !defined(OS_BSD)
   LinuxSandbox::InitializeSandbox();
+#endif
   return true;
 }
 
@@ -55,6 +57,7 @@ void RendererMainPlatformDelegate::RunSandboxTests(boo
   if (no_sandbox)
     return;
 
+#if !defined(OS_BSD)
   // about:sandbox uses a value returned from LinuxSandbox::GetStatus() before
   // any renderer has been started.
   // Here, we test that the status of SeccompBpf in the renderer is consistent
@@ -80,6 +83,7 @@ void RendererMainPlatformDelegate::RunSandboxTests(boo
     CHECK_EQ(errno, EPERM);
   }
 #endif  // __x86_64__
+#endif
 }
 
 }  // namespace content
