summaryrefslogtreecommitdiff
path: root/core/fpdfapi/parser/cpdf_stream.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-05-08 16:59:54 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-05-09 03:41:16 +0000
commitc68b1e73ce8210e2b33491da160dda5dd48599c0 (patch)
treee5a52ad9b47213214ae30e96d93b832637f94c51 /core/fpdfapi/parser/cpdf_stream.h
parent309d4db0cbf7ac8a5daee85d5761dd27868b4e42 (diff)
downloadpdfium-c68b1e73ce8210e2b33491da160dda5dd48599c0.tar.xz
Remove AppendObject from CPDF_Creator
The AppendObject method has been removed and the functionality moved to the individual CPDF_Object classes. Change-Id: I5446c6cc3e792d849acf77caed34b63a88f3a2d2 Reviewed-on: https://pdfium-review.googlesource.com/5072 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser/cpdf_stream.h')
-rw-r--r--core/fpdfapi/parser/cpdf_stream.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/fpdfapi/parser/cpdf_stream.h b/core/fpdfapi/parser/cpdf_stream.h
index 902cd75365..4f76953efe 100644
--- a/core/fpdfapi/parser/cpdf_stream.h
+++ b/core/fpdfapi/parser/cpdf_stream.h
@@ -33,6 +33,8 @@ class CPDF_Stream : public CPDF_Object {
bool IsStream() const override;
CPDF_Stream* AsStream() override;
const CPDF_Stream* AsStream() const override;
+ bool WriteTo(CFX_FileBufferArchive* archive,
+ FX_FILESIZE* offset) const override;
uint32_t GetRawSize() const { return m_dwSize; }
uint8_t* GetRawData() const { return m_pDataBuf.get(); }