diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-21 17:27:54 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-22 21:20:35 +0000 |
commit | ffc6d599a15a3e0264abb905ab05f59590864986 (patch) | |
tree | b65d27b24a86e013080a16c7354fd572abdf6256 /xfa/fde/cfde_txtedtengine.h | |
parent | 29bd35451003e58ef4be06413cce5544c16c395d (diff) | |
download | pdfium-ffc6d599a15a3e0264abb905ab05f59590864986.tar.xz |
Use std::vector in cfde_txtedtenginechromium/3049
Change-Id: I651782e6eb6b14580a89d9d613404e7984a76cf0
Reviewed-on: https://pdfium-review.googlesource.com/3141
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fde/cfde_txtedtengine.h')
-rw-r--r-- | xfa/fde/cfde_txtedtengine.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xfa/fde/cfde_txtedtengine.h b/xfa/fde/cfde_txtedtengine.h index 5499189295..020b8c93df 100644 --- a/xfa/fde/cfde_txtedtengine.h +++ b/xfa/fde/cfde_txtedtengine.h @@ -8,6 +8,7 @@ #define XFA_FDE_CFDE_TXTEDTENGINE_H_ #include <memory> +#include <vector> #include "core/fxcrt/cfx_retain_ptr.h" #include "xfa/fde/ifde_txtedtengine.h" @@ -150,9 +151,9 @@ class CFDE_TxtEdtEngine { std::unique_ptr<CFDE_TxtEdtBuf> m_pTxtBuf; std::unique_ptr<CFX_TxtBreak> m_pTextBreak; FDE_TXTEDTPARAMS m_Param; - CFX_ArrayTemplate<CFDE_TxtEdtPage*> m_PagePtrArray; - CFX_ArrayTemplate<CFDE_TxtEdtParag*> m_ParagPtrArray; - CFX_ArrayTemplate<FDE_TXTEDTSELRANGE*> m_SelRangePtrArr; + std::vector<std::unique_ptr<CFDE_TxtEdtPage>> m_PagePtrArray; + std::vector<std::unique_ptr<CFDE_TxtEdtParag>> m_ParagPtrArray; + std::vector<std::unique_ptr<FDE_TXTEDTSELRANGE>> m_SelRangePtrArr; int32_t m_nPageLineCount; int32_t m_nLineCount; int32_t m_nAnchorPos; |