blob: c6e4df63d44432e6d0b34bd14bc6ae0ac6b7215e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ipc/chromium/src/base/file_util_linux.cc~
+++ ipc/chromium/src/base/file_util_linux.cc
@@ -28,7 +28,7 @@ bool GetShmemTempDir(FilePath* path) {
#ifdef ANDROID
return GetTempDir(path);
#else
- *path = FilePath("/dev/shm");
+ *path = FilePath("/tmp");
return true;
#endif
}
|