summaryrefslogtreecommitdiff
path: root/xfa/fgas/crt/fgas_utils.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-04-29 09:45:46 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-29 09:45:46 -0700
commitd15ba4e29607665db35bc6fb610cc566981b324a (patch)
treee80465d1a9849f909b57f9ab82ad4ca58751cc0e /xfa/fgas/crt/fgas_utils.h
parentb7a9604a34c3edf2d26dd109577fc417e45e149b (diff)
downloadpdfium-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.h3
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,