summaryrefslogtreecommitdiff
path: root/xfa/fxfa/xfa_ffdocview.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2017-01-03 14:18:07 -0800
committerCommit bot <commit-bot@chromium.org>2017-01-03 14:18:08 -0800
commitd654d7854951e0ed3589fcc34617c7ca593d9e86 (patch)
tree56b52bb20b658af9f7e3146570e2890eba8b2577 /xfa/fxfa/xfa_ffdocview.h
parent72f50f2021cd9f66016c962df8d27fc0c34748cd (diff)
downloadpdfium-d654d7854951e0ed3589fcc34617c7ca593d9e86.tar.xz
remove some CFX_ArrayTemplate in xfa_ffdocview.hchromium/2971
Review-Url: https://codereview.chromium.org/2593163002
Diffstat (limited to 'xfa/fxfa/xfa_ffdocview.h')
-rw-r--r--xfa/fxfa/xfa_ffdocview.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/xfa/fxfa/xfa_ffdocview.h b/xfa/fxfa/xfa_ffdocview.h
index 2c84de7700..d8df8b4312 100644
--- a/xfa/fxfa/xfa_ffdocview.h
+++ b/xfa/fxfa/xfa_ffdocview.h
@@ -120,11 +120,11 @@ class CXFA_FFDocView {
CXFA_FFWidget* m_pFocusWidget; // not owned.
CXFA_FFWidget* m_pOldFocusWidget; // not owned.
std::map<CXFA_FFPageView*, std::unique_ptr<CFX_RectF>> m_mapPageInvalidate;
- CFX_ArrayTemplate<CXFA_WidgetAcc*> m_ValidateAccs;
- CFX_ArrayTemplate<CXFA_WidgetAcc*> m_CalculateAccs;
- CFX_ArrayTemplate<CXFA_Node*> m_BindItems;
- CFX_ArrayTemplate<CXFA_Node*> m_NewAddedNodes;
- CFX_ArrayTemplate<CXFA_Node*> m_IndexChangedSubforms;
+ std::vector<CXFA_WidgetAcc*> m_ValidateAccs;
+ std::vector<CXFA_WidgetAcc*> m_CalculateAccs;
+ std::vector<CXFA_Node*> m_BindItems;
+ std::vector<CXFA_Node*> m_NewAddedNodes;
+ std::vector<CXFA_Node*> m_IndexChangedSubforms;
XFA_DOCVIEW_LAYOUTSTATUS m_iStatus;
int32_t m_iLock;
friend class CXFA_FFNotify;