From ccd9421589922b8f35ee5330d7fdac7edea081db Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 3 May 2018 13:53:02 +0000 Subject: Add CPDF_Page::Extension::GetDocExtension() In turn, add CPDF_Document::Extension::GetPDFDoc() so that we can use the abstract return type in more places. Mark an internal-only cpdfxfa_context method as private while we're at it. Change-Id: I08e64f4b9438bf2f731c3a37cf2a41152bbbd8fa Reviewed-on: https://pdfium-review.googlesource.com/31916 Commit-Queue: dsinclair Reviewed-by: dsinclair --- fpdfsdk/fpdfxfa/cpdfxfa_context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fpdfsdk/fpdfxfa/cpdfxfa_context.h') diff --git a/fpdfsdk/fpdfxfa/cpdfxfa_context.h b/fpdfsdk/fpdfxfa/cpdfxfa_context.h index 23f1ac2220..c7fe02d8fb 100644 --- a/fpdfsdk/fpdfxfa/cpdfxfa_context.h +++ b/fpdfsdk/fpdfxfa/cpdfxfa_context.h @@ -40,7 +40,6 @@ class CPDFXFA_Context : public CPDF_Document::Extension, ~CPDFXFA_Context() override; bool LoadXFADoc(); - CPDF_Document* GetPDFDoc() { return m_pPDFDoc.get(); } CXFA_FFDoc* GetXFADoc() { return m_pXFADoc.get(); } CXFA_FFDocView* GetXFADocView() { return m_pXFADocView.Get(); } FormType GetFormType() const { return m_FormType; } @@ -48,7 +47,6 @@ class CPDFXFA_Context : public CPDF_Document::Extension, return m_FormType == FormType::kXFAFull || m_FormType == FormType::kXFAForeground; } - CJS_Runtime* GetCJSRuntime() const; CXFA_FFApp* GetXFAApp() { return m_pXFAApp.get(); } CPDFSDK_FormFillEnvironment* GetFormFillEnv() const { @@ -61,6 +59,7 @@ class CPDFXFA_Context : public CPDF_Document::Extension, void ClearChangeMark(); // CPDF_Document::Extension: + CPDF_Document* GetPDFDoc() const override; int GetPageCount() const override; void DeletePage(int page_index) override; @@ -108,6 +107,7 @@ class CPDFXFA_Context : public CPDF_Document::Extension, } private: + CJS_Runtime* GetCJSRuntime() const; void CloseXFADoc(); FormType m_FormType = FormType::kNone; -- cgit v1.2.3