$OpenBSD: patch-base_file_util_posix_cc,v 1.6 2011/12/14 16:58:19 robert Exp $
--- base/file_util_posix.cc.orig	Wed Dec  7 09:01:59 2011
+++ base/file_util_posix.cc	Tue Dec 13 21:23:11 2011
@@ -912,7 +912,11 @@ bool GetTempDir(FilePath* path) {
 
 #if !defined(OS_ANDROID)
 bool GetShmemTempDir(FilePath* path) {
+#if defined(OS_LINUX)
   *path = FilePath("/dev/shm");
+#else
+  *path = FilePath("/tmp");
+#endif
   return true;
 }
 #endif
