summaryrefslogtreecommitdiff
path: root/core/fxcrt/fx_stream.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-04-18 12:19:34 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-04-18 17:28:55 +0000
commiteccf405a479292144aa04dae4e02dae3edbba84e (patch)
tree6fe78284161c56c6a94be93f673cd9e585c8a589 /core/fxcrt/fx_stream.h
parent3c3e271ea9fd19dd535a74b5546b27e3e82dcb81 (diff)
downloadpdfium-eccf405a479292144aa04dae4e02dae3edbba84e.tar.xz
Cleanup XML buffer code
This CL removes the CXML_DataStmAcc class which was unused and moves the CXML_DataBufAcc to a separate file. This removes the use of the IFX_BufferedReadStream as the parent class and removes default implemented methods. Change-Id: I5a3921d5a6f882d54cc1c74305f1a777aa4cebfc Reviewed-on: https://pdfium-review.googlesource.com/4292 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_stream.h')
-rw-r--r--core/fxcrt/fx_stream.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/core/fxcrt/fx_stream.h b/core/fxcrt/fx_stream.h
index f77da29de3..c9306c9548 100644
--- a/core/fxcrt/fx_stream.h
+++ b/core/fxcrt/fx_stream.h
@@ -127,19 +127,6 @@ class IFX_MemoryStream : public IFX_SeekableStream {
virtual void DetachBuffer() = 0;
};
-class IFX_BufferedReadStream : public IFX_ReadStream {
- public:
- // IFX_ReadStream:
- bool IsEOF() override = 0;
- FX_FILESIZE GetPosition() override = 0;
- size_t ReadBlock(void* buffer, size_t size) override = 0;
-
- virtual bool ReadNextBlock(bool bRestart = false) = 0;
- virtual const uint8_t* GetBlockBuffer() = 0;
- virtual size_t GetBlockSize() = 0;
- virtual FX_FILESIZE GetBlockOffset() = 0;
-};
-
#ifdef PDF_ENABLE_XFA
class IFX_FileAccess : public CFX_Retainable {
public: