summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/jbig2/JBig2_Context.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-09-15 01:11:58 -0700
committerLei Zhang <thestig@chromium.org>2015-09-15 01:11:58 -0700
commita5fde67ea3c9d20d3f19354ec9e7e1be600d7589 (patch)
treed018f47415515f456125e2fa505ad16a8749736e /core/src/fxcodec/jbig2/JBig2_Context.h
parent8ad46d3d6829d879cd342caec4c6f7eaae43cba0 (diff)
downloadpdfium-a5fde67ea3c9d20d3f19354ec9e7e1be600d7589.tar.xz
Cleanup: Fix a typo. s/Processive/Processing/
R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1338573002 .
Diffstat (limited to 'core/src/fxcodec/jbig2/JBig2_Context.h')
-rw-r--r--core/src/fxcodec/jbig2/JBig2_Context.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/fxcodec/jbig2/JBig2_Context.h b/core/src/fxcodec/jbig2/JBig2_Context.h
index 5ae6897bab..1af6b9444c 100644
--- a/core/src/fxcodec/jbig2/JBig2_Context.h
+++ b/core/src/fxcodec/jbig2/JBig2_Context.h
@@ -56,7 +56,7 @@ class CJBig2_Context {
int32_t getFirstPage(CJBig2_Image** image, IFX_Pause* pPause);
int32_t Continue(IFX_Pause* pPause);
- FXCODEC_STATUS GetProcessiveStatus() { return m_ProcessiveStatus; }
+ FXCODEC_STATUS GetProcessingStatus() { return m_ProcessingStatus; }
private:
enum JBig2State {
@@ -93,7 +93,7 @@ class CJBig2_Context {
int32_t parseSegmentHeader(CJBig2_Segment* pSegment);
int32_t parseSegmentData(CJBig2_Segment* pSegment, IFX_Pause* pPause);
- int32_t ProcessiveParseSegmentData(CJBig2_Segment* pSegment,
+ int32_t ProcessingParseSegmentData(CJBig2_Segment* pSegment,
IFX_Pause* pPause);
int32_t parseSymbolDict(CJBig2_Segment* pSegment, IFX_Pause* pPause);
@@ -131,7 +131,7 @@ class CJBig2_Context {
size_t m_nSegmentDecoded;
IFX_Pause* m_pPause;
int32_t m_PauseStep;
- FXCODEC_STATUS m_ProcessiveStatus;
+ FXCODEC_STATUS m_ProcessingStatus;
FX_BOOL m_bFirstPage;
CJBig2_ArithDecoder* m_pArithDecoder;
CJBig2_GRDProc* m_pGRD;