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

Unified Diff: xfa/fxbarcode/qrcode/BC_QRCodeWriter.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/qrcode/BC_QRCodeReader.h ('k') | xfa/fxbarcode/qrcode/BC_QRDataMask.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/qrcode/BC_QRCodeWriter.h
diff --git a/xfa/fxbarcode/qrcode/BC_QRCodeWriter.h b/xfa/fxbarcode/qrcode/BC_QRCodeWriter.h
index c68c6c0a3f1bcd090b81627ec5b4d9e3015de9fb..6562107f10d8e65a7c2ed819b7f2af7a51c2f1ab 100644
--- a/xfa/fxbarcode/qrcode/BC_QRCodeWriter.h
+++ b/xfa/fxbarcode/qrcode/BC_QRCodeWriter.h
@@ -13,7 +13,8 @@ class CBC_TwoDimWriter;
class CBC_QRCodeWriter : public CBC_TwoDimWriter {
public:
CBC_QRCodeWriter();
- virtual ~CBC_QRCodeWriter();
+ ~CBC_QRCodeWriter() override;
+
uint8_t* Encode(const CFX_WideString& contents,
int32_t ecLevel,
int32_t& outWidth,
@@ -31,7 +32,10 @@ class CBC_QRCodeWriter : public CBC_TwoDimWriter {
int32_t& outHeight,
int32_t& e);
FX_BOOL SetVersion(int32_t version);
- FX_BOOL SetErrorCorrectionLevel(int32_t level);
+
+ // CBC_TwoDimWriter
+ FX_BOOL SetErrorCorrectionLevel(int32_t level) override;
+
static void ReleaseAll();
private:
« no previous file with comments | « xfa/fxbarcode/qrcode/BC_QRCodeReader.h ('k') | xfa/fxbarcode/qrcode/BC_QRDataMask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698