diff options
author | Lei Zhang <thestig@chromium.org> | 2016-01-08 14:32:23 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-01-08 14:32:23 -0800 |
commit | 4a24ad858484ecdf9b49481e63060e4d476cf1c7 (patch) | |
tree | 7e7a3cb34dc9fc12e4f1b19456e47f2a17898236 /core/include/fxcrt | |
parent | 149f1db8bba85bdf2b40d330c38f2478695ca0d5 (diff) | |
download | pdfium-4a24ad858484ecdf9b49481e63060e4d476cf1c7.tar.xz |
Remove a bunch of dead code.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1567333003 .
Diffstat (limited to 'core/include/fxcrt')
-rw-r--r-- | core/include/fxcrt/fx_stream.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/core/include/fxcrt/fx_stream.h b/core/include/fxcrt/fx_stream.h index a5599b04d0..5ec90d34ad 100644 --- a/core/include/fxcrt/fx_stream.h +++ b/core/include/fxcrt/fx_stream.h @@ -44,18 +44,7 @@ FX_WCHAR FX_GetFolderSeparator(); #define FX_FILEMODE_Write 0 #define FX_FILEMODE_ReadOnly 1 #define FX_FILEMODE_Truncate 2 -FX_BOOL FX_File_Exist(const CFX_ByteStringC& fileName); -FX_BOOL FX_File_Exist(const CFX_WideStringC& fileName); -FX_BOOL FX_File_Delete(const CFX_ByteStringC& fileName); -FX_BOOL FX_File_Delete(const CFX_WideStringC& fileName); -FX_BOOL FX_File_Copy(const CFX_ByteStringC& fileNameSrc, - const CFX_ByteStringC& fileNameDst); -FX_BOOL FX_File_Copy(const CFX_WideStringC& fileNameSrc, - const CFX_WideStringC& fileNameDst); -FX_BOOL FX_File_Move(const CFX_ByteStringC& fileNameSrc, - const CFX_ByteStringC& fileNameDst); -FX_BOOL FX_File_Move(const CFX_WideStringC& fileNameSrc, - const CFX_WideStringC& fileNameDst); + class IFX_StreamWrite { public: virtual ~IFX_StreamWrite() {} |