From 9f206f05eccf51089fe8a30bf52dc063ea5e2633 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Tue, 20 Sep 2016 12:17:42 -0700 Subject: Cleanup CPDFXFA and CPDF document methods This CL renames and cleans up some methods that are similar between CPDF_Document and CPDFXFA_Document. Review-Url: https://codereview.chromium.org/2351673004 --- fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'fpdfsdk/fpdfxfa/include') diff --git a/fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h b/fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h index 77597d47c2..ed788eac55 100644 --- a/fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h +++ b/fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h @@ -38,16 +38,16 @@ class CPDFXFA_Document { CPDF_Document* GetPDFDoc() { return m_pPDFDoc.get(); } CXFA_FFDoc* GetXFADoc() { return m_pXFADoc.get(); } CXFA_FFDocView* GetXFADocView() { return m_pXFADocView; } - - int GetPageCount(); - CPDFXFA_Page* GetPage(int page_index); - CPDFXFA_Page* GetPage(CXFA_FFPageView* pPage); + CPDFSDK_Document* GetSDKDocument(CPDFSDK_Environment* pFormFillEnv); + int GetDocType() const { return m_iDocType; } void DeletePage(int page_index); - void RemovePage(CPDFXFA_Page* page); - int GetDocType() { return m_iDocType; } + int GetPageCount() const; - CPDFSDK_Document* GetSDKDocument(CPDFSDK_Environment* pFormFillEnv); + CPDFXFA_Page* GetXFAPage(int page_index); + CPDFXFA_Page* GetXFAPage(CXFA_FFPageView* pPage) const; + + void RemovePage(CPDFXFA_Page* page); void ClearChangeMark(); -- cgit v1.2.3