diff options
author | Nicolas Pena <npm@chromium.org> | 2017-11-09 21:02:48 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-09 21:02:48 +0000 |
commit | 309fa59a2992706924913a63e7c847bc431159bc (patch) | |
tree | cf0524d6db552b91137c9730d339226d53dbb654 /core/fxcodec/jbig2/JBig2_Context.h | |
parent | b5d688b8852d2fd3bf8b5c3f367c5941dda18401 (diff) | |
download | pdfium-309fa59a2992706924913a63e7c847bc431159bc.tar.xz |
Rename some methods in CJBig2_Contextchromium/3264
This CL improves some method names and does other basic cleanup.
Change-Id: I32ea88ff29383e9685d4c686625088c96f73f035
Reviewed-on: https://pdfium-review.googlesource.com/18210
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'core/fxcodec/jbig2/JBig2_Context.h')
-rw-r--r-- | core/fxcodec/jbig2/JBig2_Context.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/fxcodec/jbig2/JBig2_Context.h b/core/fxcodec/jbig2/JBig2_Context.h index 749ec901f4..f86aa2ea1d 100644 --- a/core/fxcodec/jbig2/JBig2_Context.h +++ b/core/fxcodec/jbig2/JBig2_Context.h @@ -55,10 +55,9 @@ class CJBig2_Context { FXCODEC_STATUS GetProcessingStatus() const { return m_ProcessingStatus; } private: - int32_t decode_SquentialOrgnazation(IFX_PauseIndicator* pPause); - int32_t decode_EmbedOrgnazation(IFX_PauseIndicator* pPause); - int32_t decode_RandomOrgnazation_FirstPage(IFX_PauseIndicator* pPause); - int32_t decode_RandomOrgnazation(IFX_PauseIndicator* pPause); + int32_t decodeSequential(IFX_PauseIndicator* pPause); + int32_t decodeRandomFirstPage(IFX_PauseIndicator* pPause); + int32_t decodeRandom(IFX_PauseIndicator* pPause); CJBig2_Segment* findSegmentByNumber(uint32_t dwNumber); CJBig2_Segment* findReferredSegmentByTypeAndIndex(CJBig2_Segment* pSegment, |