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

Unified Diff: xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp

Issue 2067903002: Make code compile with clang_use_chrome_plugin (part III) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments Created 4 years, 6 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/datamatrix/BC_DataMatrixDetector.h ('k') | xfa/fxbarcode/datamatrix/BC_DataMatrixReader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp
diff --git a/xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp b/xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp
index a4ca4e228c8ee50dc88be2650abcf06fa317b99f..d34515310e905b8f14a7db6240f11889156fcd23 100644
--- a/xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp
+++ b/xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp
@@ -405,3 +405,11 @@ void CBC_DataMatrixDetector::OrderBestPatterns(
(*patterns)[1] = topLeft;
(*patterns)[2] = topRight;
}
+
+CBC_ResultPointsAndTransitions::CBC_ResultPointsAndTransitions(
+ CBC_ResultPoint* from,
+ CBC_ResultPoint* to,
+ int32_t transitions)
+ : m_from(from), m_to(to), m_transitions(transitions) {}
+
+CBC_ResultPointsAndTransitions::~CBC_ResultPointsAndTransitions() {}
« no previous file with comments | « xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.h ('k') | xfa/fxbarcode/datamatrix/BC_DataMatrixReader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698