diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-28 10:03:00 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-28 17:23:44 +0000 |
commit | 6d04ae0a1cc04141564b2a26da887c6a84d0882c (patch) | |
tree | 3ae3abfecb501b409548579f45ee23e7064f7be4 /xfa/fxfa/parser/cxfa_layoutpagemgr.h | |
parent | 7cdc660683c233787f18fccf0b63882eec097050 (diff) | |
download | pdfium-6d04ae0a1cc04141564b2a26da887c6a84d0882c.tar.xz |
Remove CFX_ArrayTemplate from xfa_layoutpagemgr.cppchromium/3055
Change-Id: I0956ecff82a11376a3d7b9176b4a13ee4e707cc3
Reviewed-on: https://pdfium-review.googlesource.com/3241
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_layoutpagemgr.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_layoutpagemgr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_layoutpagemgr.h b/xfa/fxfa/parser/cxfa_layoutpagemgr.h index ae967b55c0..7428374ae0 100644 --- a/xfa/fxfa/parser/cxfa_layoutpagemgr.h +++ b/xfa/fxfa/parser/cxfa_layoutpagemgr.h @@ -10,6 +10,7 @@ #include <iterator> #include <list> #include <map> +#include <vector> #include "xfa/fxfa/parser/xfa_layout_itemlayout.h" @@ -140,7 +141,7 @@ class CXFA_LayoutPageMgr { XFA_ATTRIBUTEENUM m_ePageSetMode; bool m_bCreateOverFlowPage; std::map<CXFA_Node*, int32_t> m_pPageSetMap; - CFX_ArrayTemplate<CXFA_ContainerLayoutItem*> m_PageArray; + std::vector<CXFA_ContainerLayoutItem*> m_PageArray; }; #endif // XFA_FXFA_PARSER_CXFA_LAYOUTPAGEMGR_H_ |