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

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

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/pdf417/BC_PDF417Writer.h ('k') | xfa/fxbarcode/qrcode/BC_QRCodeReader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h
diff --git a/xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h b/xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h
index 9a4e80c2b24bec4318492f46aca98e54a260f310..7006b72c9ce7dd39901a508212587c33c1ab926b 100644
--- a/xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h
+++ b/xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h
@@ -15,10 +15,14 @@ class CBC_QRAlignmentPattern : public CBC_ResultPoint {
CBC_QRAlignmentPattern(FX_FLOAT posX,
FX_FLOAT posY,
FX_FLOAT estimateModuleSize);
- virtual ~CBC_QRAlignmentPattern();
+ ~CBC_QRAlignmentPattern() override;
+
+ // CBC_ResultPoint
+ FX_FLOAT GetX() override;
+ FX_FLOAT GetY() override;
+
FX_BOOL AboutEquals(FX_FLOAT moduleSize, FX_FLOAT i, FX_FLOAT j);
- FX_FLOAT GetX();
- FX_FLOAT GetY();
+
CBC_QRAlignmentPattern* Clone();
};
« no previous file with comments | « xfa/fxbarcode/pdf417/BC_PDF417Writer.h ('k') | xfa/fxbarcode/qrcode/BC_QRCodeReader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698