| Index: core/src/fpdfapi/fpdf_page/pageint.h
|
| diff --git a/core/src/fpdfapi/fpdf_page/pageint.h b/core/src/fpdfapi/fpdf_page/pageint.h
|
| index 5d8ded062eec218121ec4626f18e35a311354156..5f5d767afd65ce6a12bc0b6a98c967cd4db8d67c 100644
|
| --- a/core/src/fpdfapi/fpdf_page/pageint.h
|
| +++ b/core/src/fpdfapi/fpdf_page/pageint.h
|
| @@ -309,9 +309,15 @@ protected:
|
| class CPDF_ContentParser
|
| {
|
| public:
|
| + enum ParseStatus {
|
| + Ready,
|
| + ToBeContinued,
|
| + Done
|
| + };
|
| +
|
| CPDF_ContentParser();
|
| ~CPDF_ContentParser();
|
| - typedef enum { Ready, ToBeContinued, Done } ParseStatus;
|
| +
|
| ParseStatus GetStatus()
|
| {
|
| return m_Status;
|
| @@ -320,7 +326,7 @@ public:
|
| void Start(CPDF_Form* pForm, CPDF_AllStates* pGraphicStates, CFX_AffineMatrix* pParentMatrix,
|
| CPDF_Type3Char* pType3Char, CPDF_ParseOptions* pOptions, int level);
|
| void Continue(IFX_Pause* pPause);
|
| - int EstimateProgress();
|
| +
|
| protected:
|
| void Clear();
|
| ParseStatus m_Status;
|
|
|