Chromium Code Reviews| Index: base/file_util_mac.mm |
| =================================================================== |
| --- base/file_util_mac.mm (revision 8817) |
| +++ base/file_util_mac.mm (working copy) |
| @@ -21,6 +21,10 @@ |
| return true; |
| } |
| +bool GetShmemTempDir(FilePath* path) { |
| + return GetTempDir(path); |
| +} |
| + |
| bool CopyFile(const FilePath& from_path, const FilePath& to_path) { |
| return (copyfile(from_path.value().c_str(), |
| to_path.value().c_str(), NULL, COPYFILE_ALL) == 0); |