diff options
author | tsepez <tsepez@chromium.org> | 2016-03-25 14:38:58 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-25 14:38:58 -0700 |
commit | deee3d2ee201d62e7ef41e7d8378d7f52e057a9c (patch) | |
tree | f9f64d5f24376108a697299f8574ae3a7fe3511b /xfa/fxfa/app/xfa_ffdoc.h | |
parent | 736f28ab2434e2da1de66ff91b64741483ff9cba (diff) | |
download | pdfium-deee3d2ee201d62e7ef41e7d8378d7f52e057a9c.tar.xz |
Remove FX_DWORD from XFA, part 2
Some headers were missed in the previous CL.
Review URL: https://codereview.chromium.org/1835703002
Diffstat (limited to 'xfa/fxfa/app/xfa_ffdoc.h')
-rw-r--r-- | xfa/fxfa/app/xfa_ffdoc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/app/xfa_ffdoc.h b/xfa/fxfa/app/xfa_ffdoc.h index d656d30de7..8b61bd228f 100644 --- a/xfa/fxfa/app/xfa_ffdoc.h +++ b/xfa/fxfa/app/xfa_ffdoc.h @@ -25,15 +25,15 @@ class CXFA_FFDoc : public IXFA_Doc { CXFA_FFDoc(CXFA_FFApp* pApp, IXFA_DocProvider* pDocProvider); ~CXFA_FFDoc(); IXFA_DocProvider* GetDocProvider() { return m_pDocProvider; } - FX_DWORD GetDocType(); + uint32_t GetDocType(); int32_t StartLoad(); int32_t DoLoad(IFX_Pause* pPause = NULL); void StopLoad(); - IXFA_DocView* CreateDocView(FX_DWORD dwView = 0); + IXFA_DocView* CreateDocView(uint32_t dwView = 0); FX_BOOL OpenDoc(IFX_FileRead* pStream, FX_BOOL bTakeOverFile); FX_BOOL OpenDoc(CPDF_Document* pPDFDoc); FX_BOOL CloseDoc(); - void SetDocType(FX_DWORD dwType); + void SetDocType(uint32_t dwType); CXFA_Document* GetXFADoc() { return m_pDocument; } CXFA_FFApp* GetApp() { return m_pApp; } CXFA_FFDocView* GetDocView(IXFA_DocLayout* pLayout); @@ -57,7 +57,7 @@ class CXFA_FFDoc : public IXFA_Doc { CPDF_Document* m_pPDFDoc; CFX_MapPtrToPtr m_mapNamedImages; CFX_MapPtrToPtr m_mapTypeToDocView; - FX_DWORD m_dwDocType; + uint32_t m_dwDocType; FX_BOOL m_bOwnStream; }; |