Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1904)

Unified Diff: xfa/fxbarcode/common/BC_CommonBitArray.h

Issue 2649563003: Replace CFX_ByteArray with CFX_ArrayTemplate<uint8_t> (Closed)
Patch Set: re-upload Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fxbarcode/BC_Utils.cpp ('k') | xfa/fxbarcode/common/BC_CommonBitArray.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/common/BC_CommonBitArray.h
diff --git a/xfa/fxbarcode/common/BC_CommonBitArray.h b/xfa/fxbarcode/common/BC_CommonBitArray.h
index 80a56d1b53369128c8bfb69fd01d93385284493d..6ad8ab321d8b421ea85cbf52a2f86c4355ad3bba 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_
« no previous file with comments | « xfa/fxbarcode/BC_Utils.cpp ('k') | xfa/fxbarcode/common/BC_CommonBitArray.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698