diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-14 13:00:09 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-14 20:45:36 +0000 |
commit | 656c781e515508ae4818d826041e9d87862d3f3a (patch) | |
tree | ec9e8f426aabd127d547607f7b38d3b34d056437 /xfa/fxfa/parser/xfa_layout_itemlayout.h | |
parent | c83c28092f67f352cbd690138151b253dfdf547b (diff) | |
download | pdfium-656c781e515508ae4818d826041e9d87862d3f3a.tar.xz |
Use std::vector for content layout item arrays
Change-Id: Iebbb8e16dae503807fa12cd2d20577082d2a3bca
Reviewed-on: https://pdfium-review.googlesource.com/2960
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/xfa_layout_itemlayout.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_layout_itemlayout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/xfa_layout_itemlayout.h b/xfa/fxfa/parser/xfa_layout_itemlayout.h index 7b19283b9b..72cb235acb 100644 --- a/xfa/fxfa/parser/xfa_layout_itemlayout.h +++ b/xfa/fxfa/parser/xfa_layout_itemlayout.h @@ -92,7 +92,7 @@ class CXFA_ItemLayoutProcessor { CXFA_ItemLayoutProcessor* pParentProcessor, CXFA_ItemLayoutProcessor* pChildProcessor, XFA_ItemLayoutProcessorResult eRetValue, - CFX_ArrayTemplate<CXFA_ContentLayoutItem*>* rgCurLineLayoutItem, + std::vector<CXFA_ContentLayoutItem*>* rgCurLineLayoutItem, float* fContentCurRowAvailWidth, float* fContentCurRowHeight, float* fContentCurRowY, @@ -131,7 +131,7 @@ class CXFA_ItemLayoutProcessor { float fSplitPos); float InsertKeepLayoutItems(); bool CalculateRowChildPosition( - CFX_ArrayTemplate<CXFA_ContentLayoutItem*> (&rgCurLineLayoutItems)[3], + std::vector<CXFA_ContentLayoutItem*> (&rgCurLineLayoutItems)[3], XFA_ATTRIBUTEENUM eFlowStrategy, bool bContainerHeightAutoSize, bool bContainerWidthAutoSize, |