diff options
author | tsepez <tsepez@chromium.org> | 2016-12-13 12:45:56 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-13 12:45:56 -0800 |
commit | 988599c5d81bbb568f949454580ec6001258f806 (patch) | |
tree | ef17a32995dabec3c63418a2f65fb21a950ade70 /xfa/fxfa/app/xfa_textlayout.h | |
parent | 05b4fc1227f5b6d39a3a65daf915a92ea3b749f4 (diff) | |
download | pdfium-988599c5d81bbb568f949454580ec6001258f806.tar.xz |
Replace CFX_FloatArray with std::vector
Review-Url: https://codereview.chromium.org/2567503002
Diffstat (limited to 'xfa/fxfa/app/xfa_textlayout.h')
-rw-r--r-- | xfa/fxfa/app/xfa_textlayout.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fxfa/app/xfa_textlayout.h b/xfa/fxfa/app/xfa_textlayout.h index b299f52904..26bd1634ee 100644 --- a/xfa/fxfa/app/xfa_textlayout.h +++ b/xfa/fxfa/app/xfa_textlayout.h @@ -9,6 +9,7 @@ #include <map> #include <memory> +#include <vector> #include "xfa/fde/css/fde_css.h" #include "xfa/fde/fde_gedevice.h" @@ -155,7 +156,7 @@ class CXFA_LoaderContext { IFDE_CSSComputedStyle* m_pParentStyle; CFX_ArrayTemplate<FX_FLOAT> m_lineHeights; uint32_t m_dwFlags; - CFX_FloatArray m_BlocksHeight; + std::vector<FX_FLOAT> m_BlocksHeight; }; class CXFA_LinkUserData : public IFX_Retainable, public CFX_Target { |