summaryrefslogtreecommitdiff
path: root/core/fxcodec/bmp/cfx_bmpdecompressor.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-08-13 20:36:16 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-13 20:36:16 +0000
commitd801c9c9caddf3941f6844fab58b19261d7d3cad (patch)
tree745db126f620e06dadab32fd71ead7bc8ca2dede /core/fxcodec/bmp/cfx_bmpdecompressor.h
parent30029419ad4b9e5cd382767a8645677afbeff7fd (diff)
downloadpdfium-d801c9c9caddf3941f6844fab58b19261d7d3cad.tar.xz
Implement CFX_CodecMemory.
This class is much simpler than CFX_MemoryStream and does only what CFX_BmpDecompressor and CFX_GifContext needs. Swap out CFX_MemoryStream and remove CFX_MemoryStream::Seek(). BUG=pdfium:263 Change-Id: Ifd8ce4d2b6c9fedd6ec842d46f54fc8e654fbca7 Reviewed-on: https://pdfium-review.googlesource.com/39880 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fxcodec/bmp/cfx_bmpdecompressor.h')
-rw-r--r--core/fxcodec/bmp/cfx_bmpdecompressor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcodec/bmp/cfx_bmpdecompressor.h b/core/fxcodec/bmp/cfx_bmpdecompressor.h
index 2f1585e649..519297881a 100644
--- a/core/fxcodec/bmp/cfx_bmpdecompressor.h
+++ b/core/fxcodec/bmp/cfx_bmpdecompressor.h
@@ -14,7 +14,7 @@
#include <memory>
#include <vector>
-#include "core/fxcrt/cfx_memorystream.h"
+#include "core/fxcodec/codec/cfx_codec_memory.h"
class CFX_BmpContext;
@@ -69,7 +69,7 @@ class CFX_BmpDecompressor {
bool ValidateFlag() const;
void SetHeight(int32_t signed_height);
- RetainPtr<CFX_MemoryStream> input_buffer_;
+ RetainPtr<CFX_CodecMemory> input_buffer_;
};
#endif // CORE_FXCODEC_BMP_CFX_BMPDECOMPRESSOR_H_