diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-21 15:55:42 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-21 15:55:42 -0700 |
commit | 69ceb6a9761b3ccb228a2405e9a493a3666e0601 (patch) | |
tree | aeda419b1fc75d5c2d2147b172edd47ae12298ac /fpdfsdk/include/fsdk_mgr.h | |
parent | 3b2ab45f0a883046a7c457e8435b5a9b2c1c4156 (diff) | |
download | pdfium-69ceb6a9761b3ccb228a2405e9a493a3666e0601.tar.xz |
More master side changes for convergence with XFA.
- Add new CPDFSDK_Document::GetPDFDocument()
- FPDFDocumentFromCPDFDocument() to match XFA
- rename some JS variables to be consistent with XFA
- remove unused param from CJS_GlobalData().
- kill dead code used XFA only.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1413883005 .
Diffstat (limited to 'fpdfsdk/include/fsdk_mgr.h')
-rw-r--r-- | fpdfsdk/include/fsdk_mgr.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/fpdfsdk/include/fsdk_mgr.h b/fpdfsdk/include/fsdk_mgr.h index 5ddc8e6c57..068731ee8f 100644 --- a/fpdfsdk/include/fsdk_mgr.h +++ b/fpdfsdk/include/fsdk_mgr.h @@ -229,7 +229,14 @@ class CPDFSDK_Document { ~CPDFSDK_Document(); CPDFSDK_InterForm* GetInterForm(); - CPDF_Document* GetDocument() { return m_pDoc; } + + // Gets the document object for the next layer down; for master this is + // a CPDF_Document, but for XFA it is a CPDFXFA_Document. + CPDF_Document* GetDocument() const { return m_pDoc; } + + // Gets the CPDF_Document, either directly in master, or from the + // CPDFXFA_Document for XFA. + CPDF_Document* GetPDFDocument() const { return m_pDoc; } CPDFSDK_PageView* GetPageView(CPDF_Page* pPDFPage, FX_BOOL ReNew = TRUE); CPDFSDK_PageView* GetPageView(int nIndex); |