summaryrefslogtreecommitdiff
path: root/core/fxcodec/jbig2/JBig2_SddProc.h
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2018-06-13 20:11:07 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-06-13 20:11:07 +0000
commit862520506e75e1129d3ae86d96f60facf287296e (patch)
tree22b95431bba81a3637977cabd75da05800b56870 /core/fxcodec/jbig2/JBig2_SddProc.h
parentae7bcb7c9ec3a617a464697845968401391f74c9 (diff)
downloadpdfium-862520506e75e1129d3ae86d96f60facf287296e.tar.xz
Make CJBig2_Context::GetHuffmanTable return const
This CL changes GetHuffmanTable() to return a const pointer and fixes other members / functions accordingly. Change-Id: Ie62fe044b3156f67885dd4fa1f6512cbd35a83d3 Reviewed-on: https://pdfium-review.googlesource.com/35116 Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'core/fxcodec/jbig2/JBig2_SddProc.h')
-rw-r--r--core/fxcodec/jbig2/JBig2_SddProc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/fxcodec/jbig2/JBig2_SddProc.h b/core/fxcodec/jbig2/JBig2_SddProc.h
index 672c2c3e6a..a6fb039cac 100644
--- a/core/fxcodec/jbig2/JBig2_SddProc.h
+++ b/core/fxcodec/jbig2/JBig2_SddProc.h
@@ -36,10 +36,10 @@ class CJBig2_SDDProc {
CJBig2_Image** SDINSYMS;
uint32_t SDNUMNEWSYMS;
uint32_t SDNUMEXSYMS;
- CJBig2_HuffmanTable* SDHUFFDH;
- CJBig2_HuffmanTable* SDHUFFDW;
- CJBig2_HuffmanTable* SDHUFFBMSIZE;
- CJBig2_HuffmanTable* SDHUFFAGGINST;
+ const CJBig2_HuffmanTable* SDHUFFDH;
+ const CJBig2_HuffmanTable* SDHUFFDW;
+ const CJBig2_HuffmanTable* SDHUFFBMSIZE;
+ const CJBig2_HuffmanTable* SDHUFFAGGINST;
uint8_t SDTEMPLATE;
int8_t SDAT[8];
bool SDRTEMPLATE;