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 cf1fe47c0d7a415ed41a822b1059f3a842a1ef56..8cd393cf32abb622a6a4549ad7ca5fc7269280aa 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; |