diff options
author | tsepez <tsepez@chromium.org> | 2016-06-07 06:41:50 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-07 06:41:50 -0700 |
commit | 596fc4c034b70e7826d4781432e4b657921f1abc (patch) | |
tree | fa25fbb04a560766b082aa78f1ae6779134cfcba /core/fpdfapi/fpdf_parser/include | |
parent | b0fcfad1412c2ddaf33c74fa4b854c3c1390a509 (diff) | |
download | pdfium-596fc4c034b70e7826d4781432e4b657921f1abc.tar.xz |
Add missing const to CPDF_Stream::InitStream()
Review-Url: https://codereview.chromium.org/2044453003
Diffstat (limited to 'core/fpdfapi/fpdf_parser/include')
-rw-r--r-- | core/fpdfapi/fpdf_parser/include/cpdf_stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/fpdf_parser/include/cpdf_stream.h b/core/fpdfapi/fpdf_parser/include/cpdf_stream.h index 0010a1528e..6aa8bca8dc 100644 --- a/core/fpdfapi/fpdf_parser/include/cpdf_stream.h +++ b/core/fpdfapi/fpdf_parser/include/cpdf_stream.h @@ -32,7 +32,7 @@ class CPDF_Stream : public CPDF_Object { FX_BOOL bCompressed, FX_BOOL bKeepBuf); - void InitStream(uint8_t* pData, uint32_t size, CPDF_Dictionary* pDict); + void InitStream(const uint8_t* pData, uint32_t size, CPDF_Dictionary* pDict); void InitStreamFromFile(IFX_FileRead* pFile, CPDF_Dictionary* pDict); FX_BOOL ReadRawData(FX_FILESIZE start_pos, |