diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-24 14:19:11 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-27 13:54:28 +0000 |
commit | fcc309e618fea8b61a2757e2f75aac4233020013 (patch) | |
tree | a5b46b311a8cf131b7a6ef90de8de775b2c789c5 /xfa/fxfa/app/cxfa_loadercontext.h | |
parent | 90d80f81e988ba7e6f0dbf78220b5b7cd31a527b (diff) | |
download | pdfium-fcc309e618fea8b61a2757e2f75aac4233020013.tar.xz |
Use std::vector in fxfa/app.
Change-Id: I83fed055cb92ccff85829d7aea7a9624b8f07456
Reviewed-on: https://pdfium-review.googlesource.com/3218
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/app/cxfa_loadercontext.h')
-rw-r--r-- | xfa/fxfa/app/cxfa_loadercontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/app/cxfa_loadercontext.h b/xfa/fxfa/app/cxfa_loadercontext.h index 4d1a2b3a6b..16d9608bac 100644 --- a/xfa/fxfa/app/cxfa_loadercontext.h +++ b/xfa/fxfa/app/cxfa_loadercontext.h @@ -29,11 +29,11 @@ class CXFA_LoaderContext { int32_t m_iChar; int32_t m_iLines; int32_t m_iTotalLines; + uint32_t m_dwFlags; CFDE_XMLNode* m_pXMLNode; CXFA_Node* m_pNode; CFX_RetainPtr<CFDE_CSSComputedStyle> m_pParentStyle; - CFX_ArrayTemplate<float> m_lineHeights; - uint32_t m_dwFlags; + std::vector<float> m_lineHeights; std::vector<float> m_BlocksHeight; }; |