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

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: fix 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
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..516ba0fbe82c2a9e4fb4669df24dc4dd86fbde64 100644
--- a/xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp
+++ b/xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp
@@ -405,3 +405,14 @@ 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;
Lei Zhang 2016/06/15 00:04:30 Use the initializer list instead?
Wei Li 2016/06/15 00:32:39 Done.
+ m_to = to;
+ m_transitions = transitions;
+}
+
+CBC_ResultPointsAndTransitions::~CBC_ResultPointsAndTransitions() {}

Powered by Google App Engine
This is Rietveld 408576698