Chromium Code Reviews| Index: base/file_util_linux.cc |
| =================================================================== |
| --- base/file_util_linux.cc (revision 8817) |
| +++ base/file_util_linux.cc (working copy) |
| @@ -24,6 +24,11 @@ |
| return true; |
| } |
| +bool GetShmemTempDir(FilePath* path) { |
| + *path = FilePath("/dev/shm"); |
| + return true; |
| +} |
| + |
| bool CopyFile(const FilePath& from_path, const FilePath& to_path) { |
| int infile = open(from_path.value().c_str(), O_RDONLY); |
| if (infile < 0) |