summaryrefslogtreecommitdiff
path: root/core/fxcodec/jbig2/JBig2_Context.h
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2017-11-09 21:02:48 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-09 21:02:48 +0000
commit309fa59a2992706924913a63e7c847bc431159bc (patch)
treecf0524d6db552b91137c9730d339226d53dbb654 /core/fxcodec/jbig2/JBig2_Context.h
parentb5d688b8852d2fd3bf8b5c3f367c5941dda18401 (diff)
downloadpdfium-chromium/3264.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.h7
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,