summaryrefslogtreecommitdiff
path: root/core/include/fxcrt/fx_stream.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2016-01-08 14:57:48 -0800
committerLei Zhang <thestig@chromium.org>2016-01-08 14:57:48 -0800
commitb8e1ab27372cdb5d8c83e57e004032f0d72715db (patch)
tree718888980718f0b0f5e8d283f91713bdb0712c70 /core/include/fxcrt/fx_stream.h
parent111d8db83ac04d15bd8d879e7dad4651ee8e27e9 (diff)
downloadpdfium-b8e1ab27372cdb5d8c83e57e004032f0d72715db.tar.xz
Merge to XFA: Remove a bunch of dead code.
TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/1567333003 . (cherry picked from commit 4a24ad858484ecdf9b49481e63060e4d476cf1c7) Review URL: https://codereview.chromium.org/1569783007 .
Diffstat (limited to 'core/include/fxcrt/fx_stream.h')
-rw-r--r--core/include/fxcrt/fx_stream.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/core/include/fxcrt/fx_stream.h b/core/include/fxcrt/fx_stream.h
index a5bec7f51b..f98e44b846 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() {}