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

Unified Diff: xfa/fxbarcode/common/BC_CommonDecoderResult.cpp

Issue 1927253002: Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, Part 5 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Nits. Created 4 years, 8 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
Index: xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
diff --git a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
index d28a88bfbce68112cadc488c76a8cf140ecbbbe0..45aff1cae11f4107c0efb9bdb266510c738fa3ee 100644
--- a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
+++ b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
@@ -44,7 +44,6 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes,
}
void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes,
const CFX_ByteString& text,
- const CFX_PtrArray& byteSegments,
const CFX_ByteString& ecLevel,
int32_t& e) {
if (text.IsEmpty()) {
@@ -53,7 +52,6 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes,
}
m_rawBytes.Copy(rawBytes);
m_text = text;
- m_pdf417byteSegments.Copy(byteSegments);
m_pdf417ecLevel = ecLevel;
m_other = NULL;
}
« no previous file with comments | « xfa/fxbarcode/common/BC_CommonDecoderResult.h ('k') | xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698