summaryrefslogtreecommitdiff
path: root/core/fpdfapi/parser/cpdf_stream_acc.h
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2017-11-08 15:49:51 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-08 15:49:51 +0000
commitc064d54cd169390039eedae422bbb132f771d20a (patch)
treea9f94cd071c0bf1f1e0015ae9f055047dedc6810 /core/fpdfapi/parser/cpdf_stream_acc.h
parent58629a0e49e4ebfb0a0171a4203d2fab4af63165 (diff)
downloadpdfium-c064d54cd169390039eedae422bbb132f771d20a.tar.xz
Use MaybeOwned in CPDF_ContentParser
Change-Id: I7e5daeafd70ef29bcc9bdebbae004fa4b946b83d Reviewed-on: https://pdfium-review.googlesource.com/18019 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser/cpdf_stream_acc.h')
-rw-r--r--core/fpdfapi/parser/cpdf_stream_acc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/fpdfapi/parser/cpdf_stream_acc.h b/core/fpdfapi/parser/cpdf_stream_acc.h
index a8a2540880..c270285345 100644
--- a/core/fpdfapi/parser/cpdf_stream_acc.h
+++ b/core/fpdfapi/parser/cpdf_stream_acc.h
@@ -33,6 +33,7 @@ class CPDF_StreamAcc : public Retainable {
}
const uint8_t* GetData() const;
+ uint8_t* GetData();
uint32_t GetSize() const;
const ByteString& GetImageDecoder() const { return m_ImageDecoder; }
const CPDF_Dictionary* GetImageParam() const { return m_pImageParam; }
@@ -42,6 +43,9 @@ class CPDF_StreamAcc : public Retainable {
explicit CPDF_StreamAcc(const CPDF_Stream* pStream);
~CPDF_StreamAcc() override;
+ private:
+ uint8_t* GetDataHelper() const;
+
uint8_t* m_pData;
uint32_t m_dwSize;
bool m_bNewBuf;