summaryrefslogtreecommitdiff
path: root/xfa/fxbarcode/common/BC_CommonBitArray.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2017-01-20 12:59:50 -0800
committerCommit bot <commit-bot@chromium.org>2017-01-20 12:59:50 -0800
commit82aa396188ec26f22fe730f4e35b5a54ebffb5dc (patch)
tree3950a96204c68fed27d1812cdd9d30de1a6226c0 /xfa/fxbarcode/common/BC_CommonBitArray.h
parent6db6fbcdee9f1887ac02c647210bd5013358f12d (diff)
downloadpdfium-82aa396188ec26f22fe730f4e35b5a54ebffb5dc.tar.xz
Replace CFX_ByteArray with CFX_ArrayTemplate<uint8_t>chromium/2990chromium/2989chromium/2988
Also replace CFX_Int32Array typedef with CFX_ArrayTemplate<int32_t>. Removing the typedefs makes subsequent conversion to std::vector<> easier on a case-by-case basis. Review-Url: https://codereview.chromium.org/2649563003
Diffstat (limited to 'xfa/fxbarcode/common/BC_CommonBitArray.h')
-rw-r--r--xfa/fxbarcode/common/BC_CommonBitArray.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxbarcode/common/BC_CommonBitArray.h b/xfa/fxbarcode/common/BC_CommonBitArray.h
index 80a56d1b53..6ad8ab321d 100644
--- a/xfa/fxbarcode/common/BC_CommonBitArray.h
+++ b/xfa/fxbarcode/common/BC_CommonBitArray.h
@@ -17,7 +17,7 @@ class CBC_CommonBitArray {
virtual ~CBC_CommonBitArray();
int32_t GetSize();
- CFX_Int32Array& GetBits();
+ CFX_ArrayTemplate<int32_t>& GetBits();
int32_t GetSizeInBytes();
bool Get(int32_t i);
void Set(int32_t i);
@@ -30,7 +30,7 @@ class CBC_CommonBitArray {
private:
int32_t m_size;
- CFX_Int32Array m_bits;
+ CFX_ArrayTemplate<int32_t> m_bits;
};
#endif // XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_