Chromium Code Reviews| Index: base/file_util_linux.cc |
| =================================================================== |
| --- base/file_util_linux.cc (revision 5562) |
| +++ base/file_util_linux.cc (working copy) |
| @@ -26,10 +26,6 @@ |
| return true; |
| } |
| -FILE* OpenFile(const FilePath& filename, const char* mode) { |
| - return fopen(filename.value().c_str(), mode); |
| -} |
| - |
| bool CopyFile(const FilePath& from_path, const FilePath& to_path) { |
| int infile = open(from_path.value().c_str(), O_RDONLY); |
| if (infile < 0) |