diff options
author | tsepez <tsepez@chromium.org> | 2016-04-29 09:45:46 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-29 09:45:46 -0700 |
commit | d15ba4e29607665db35bc6fb610cc566981b324a (patch) | |
tree | e80465d1a9849f909b57f9ab82ad4ca58751cc0e /xfa/fgas/crt/fgas_utils.h | |
parent | b7a9604a34c3edf2d26dd109577fc417e45e149b (diff) | |
download | pdfium-d15ba4e29607665db35bc6fb610cc566981b324a.tar.xz |
Replace CFX_PtryArray with typesafe CFX_ArrayTemplate, Part 7
Remaining uses are all in fxbarcode/.
Review-Url: https://codereview.chromium.org/1937453002
Diffstat (limited to 'xfa/fgas/crt/fgas_utils.h')
-rw-r--r-- | xfa/fgas/crt/fgas_utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fgas/crt/fgas_utils.h b/xfa/fgas/crt/fgas_utils.h index ebbcf4bd97..ab94f6ed40 100644 --- a/xfa/fgas/crt/fgas_utils.h +++ b/xfa/fgas/crt/fgas_utils.h @@ -202,11 +202,12 @@ class CFX_BaseMassArrayImp : public CFX_Target { int32_t iCount = -1); int32_t RemoveLast(int32_t iCount = -1); void RemoveAll(FX_BOOL bLeaveMemory = FALSE); + int32_t m_iChunkSize; int32_t m_iBlockSize; int32_t m_iChunkCount; int32_t m_iBlockCount; - CFX_PtrArray* m_pData; + CFX_ArrayTemplate<void*>* m_pData; protected: void Append(int32_t iDstStart, |