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

Unified Diff: xfa/fxbarcode/BC_Utils.cpp

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_UtilCodingConvert.cpp ('k') | xfa/fxbarcode/common/BC_CommonBitArray.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/BC_Utils.cpp
diff --git a/xfa/fxbarcode/BC_Utils.cpp b/xfa/fxbarcode/BC_Utils.cpp
index 807b04861d20e545732b7c2748f49ae37d7969d1..5d881c7be16c4072a3b9b7da7d3f7e49563d2c0b 100644
--- a/xfa/fxbarcode/BC_Utils.cpp
+++ b/xfa/fxbarcode/BC_Utils.cpp
@@ -26,7 +26,8 @@ void BC_FX_ByteString_Append(CFX_ByteString& dst, int32_t count, FX_CHAR c) {
dst += c;
}
}
-void BC_FX_ByteString_Append(CFX_ByteString& dst, const CFX_ByteArray& ba) {
+void BC_FX_ByteString_Append(CFX_ByteString& dst,
+ const CFX_ArrayTemplate<uint8_t>& ba) {
for (int32_t i = 0; i < ba.GetSize(); i++) {
dst += ba[i];
}
« no previous file with comments | « xfa/fxbarcode/BC_UtilCodingConvert.cpp ('k') | xfa/fxbarcode/common/BC_CommonBitArray.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698