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

Unified Diff: xfa/fxbarcode/qrcode/BC_QRCoderVersion.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/qrcode/BC_QRCoderEncoder.cpp ('k') | xfa/fxbarcode/qrcode/BC_QRCoderVersion.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/qrcode/BC_QRCoderVersion.h
diff --git a/xfa/fxbarcode/qrcode/BC_QRCoderVersion.h b/xfa/fxbarcode/qrcode/BC_QRCoderVersion.h
index 43b4b6062ee141d47b2cf3a5754f53b7d22df930..030dd512a0a47cd83560dd8e8bd35a2da3059669 100644
--- a/xfa/fxbarcode/qrcode/BC_QRCoderVersion.h
+++ b/xfa/fxbarcode/qrcode/BC_QRCoderVersion.h
@@ -23,7 +23,7 @@ class CBC_QRCoderVersion {
int32_t GetTotalCodeWords();
int32_t GetDimensionForVersion();
CBC_CommonBitMatrix* BuildFunctionPattern(int32_t& e);
- CFX_Int32Array* GetAlignmentPatternCenters();
+ CFX_ArrayTemplate<int32_t>* GetAlignmentPatternCenters();
CBC_QRCoderECBlocks* GetECBlocksForLevel(
CBC_QRCoderErrorCorrectionLevel* ecLevel);
static CBC_QRCoderVersion* GetVersionForNumber(int32_t versionNumber,
@@ -48,7 +48,7 @@ class CBC_QRCoderVersion {
int32_t m_versionNumber;
int32_t m_totalCodeWords;
- CFX_Int32Array m_alignmentPatternCenters;
+ CFX_ArrayTemplate<int32_t> m_alignmentPatternCenters;
CFX_ArrayTemplate<CBC_QRCoderECBlocks*> m_ecBlocksArray;
};
« no previous file with comments | « xfa/fxbarcode/qrcode/BC_QRCoderEncoder.cpp ('k') | xfa/fxbarcode/qrcode/BC_QRCoderVersion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698