diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-03 17:17:54 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-03 17:17:54 +0000 |
commit | bc7e310b027809562eb589bfef72737c193ee27a (patch) | |
tree | 4ae752970fd391c9687d1b17fc0c385373398896 /xfa/fxfa/cxfa_loadercontext.h | |
parent | 1c14ae2fbe1ae95dac3a7f5e60d049d9630aef02 (diff) | |
download | pdfium-bc7e310b027809562eb589bfef72737c193ee27a.tar.xz |
Use UnownedPtr<> in cxfa_{ffwidgethandler,imagrenderer,loadercontext}.h
Change-Id: I25496c9792a99ca27d2ab84c267770ff941cf921
Reviewed-on: https://pdfium-review.googlesource.com/36912
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_loadercontext.h')
-rw-r--r-- | xfa/fxfa/cxfa_loadercontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_loadercontext.h b/xfa/fxfa/cxfa_loadercontext.h index 36ec95b7f3..ff7c6032a8 100644 --- a/xfa/fxfa/cxfa_loadercontext.h +++ b/xfa/fxfa/cxfa_loadercontext.h @@ -30,7 +30,7 @@ class CXFA_LoaderContext { int32_t m_iLines; int32_t m_iTotalLines; uint32_t m_dwFlags; - CFX_XMLNode* m_pXMLNode; + UnownedPtr<CFX_XMLNode> m_pXMLNode; UnownedPtr<CXFA_Node> m_pNode; RetainPtr<CFX_CSSComputedStyle> m_pParentStyle; std::vector<float> m_lineHeights; |