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

Unified Diff: xfa/fxbarcode/pdf417/BC_PDF417Writer.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_PDF417ScanningDecoder.h ('k') | xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/pdf417/BC_PDF417Writer.h
diff --git a/xfa/fxbarcode/pdf417/BC_PDF417Writer.h b/xfa/fxbarcode/pdf417/BC_PDF417Writer.h
index 7f7195948c9deb009a95e63d26e48ac03781c67a..e16c51474ee3abdf530249b65e36b9e9c07e0b51 100644
--- a/xfa/fxbarcode/pdf417/BC_PDF417Writer.h
+++ b/xfa/fxbarcode/pdf417/BC_PDF417Writer.h
@@ -14,12 +14,16 @@
class CBC_PDF417Writer : public CBC_TwoDimWriter {
public:
CBC_PDF417Writer();
- virtual ~CBC_PDF417Writer();
+ ~CBC_PDF417Writer() override;
+
uint8_t* Encode(const CFX_WideString& contents,
int32_t& outWidth,
int32_t& outHeight,
int32_t& e);
- FX_BOOL SetErrorCorrectionLevel(int32_t level);
+
+ // CBC_TwoDimWriter
+ FX_BOOL SetErrorCorrectionLevel(int32_t level) override;
+
void SetTruncated(FX_BOOL truncated);
private:
« no previous file with comments | « xfa/fxbarcode/pdf417/BC_PDF417ScanningDecoder.h ('k') | xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698