summaryrefslogtreecommitdiff
path: root/core/fpdfapi/parser/cpdf_stream_acc.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/parser/cpdf_stream_acc.h')
-rw-r--r--core/fpdfapi/parser/cpdf_stream_acc.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/fpdfapi/parser/cpdf_stream_acc.h b/core/fpdfapi/parser/cpdf_stream_acc.h
index 6ecfece5ab..611c78d0f6 100644
--- a/core/fpdfapi/parser/cpdf_stream_acc.h
+++ b/core/fpdfapi/parser/cpdf_stream_acc.h
@@ -47,6 +47,12 @@ class CPDF_StreamAcc final : public Retainable {
void LoadAllData(bool bRawAccess, uint32_t estimated_size, bool bImageAcc);
+ void ProcessRawData();
+ void ProcessFilteredData(uint32_t estimated_size, bool bImageAcc);
+
+ // Reads the raw data from |m_pStream|, or return nullptr on failure.
+ std::unique_ptr<uint8_t, FxFreeDeleter> ReadRawStream() const;
+
uint8_t* m_pData = nullptr;
uint32_t m_dwSize = 0;
bool m_bNewBuf = false;