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

Unified Diff: xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h

Issue 1927253002: Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, Part 5 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Unused fn. 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/qrcode/BC_FinderPatternInfo.h
diff --git a/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h b/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h
index 1091d6723d90aefc53cd87eac372c5ab2c27d7bb..1e591f9c7037607b9c0f034371a582ebc98d62e8 100644
--- a/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h
+++ b/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h
@@ -12,17 +12,19 @@
class CBC_QRFinderPattern;
class CBC_QRFinderPatternInfo {
+ public:
+ CBC_QRFinderPatternInfo(
Lei Zhang 2016/04/28 21:26:12 explicit
Tom Sepez 2016/04/28 22:03:49 Done.
+ CFX_ArrayTemplate<CBC_QRFinderPattern*>* patternCenters);
+ virtual ~CBC_QRFinderPatternInfo();
Lei Zhang 2016/04/28 21:26:12 no need for virtual?
Tom Sepez 2016/04/28 22:03:49 Done.
+
+ CBC_QRFinderPattern* GetBottomLeft() const;
+ CBC_QRFinderPattern* GetTopLeft() const;
+ CBC_QRFinderPattern* GetTopRight() const;
+
private:
CBC_QRFinderPattern* m_bottomLeft;
CBC_QRFinderPattern* m_topLeft;
CBC_QRFinderPattern* m_topRight;
-
- public:
- CBC_QRFinderPatternInfo(CFX_PtrArray* patternCenters);
- virtual ~CBC_QRFinderPatternInfo();
- CBC_QRFinderPattern* GetBottomLeft();
- CBC_QRFinderPattern* GetTopLeft();
- CBC_QRFinderPattern* GetTopRight();
};
#endif // XFA_FXBARCODE_QRCODE_BC_FINDERPATTERNINFO_H_
« no previous file with comments | « xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp ('k') | xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698