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

Unified Diff: xfa/fxbarcode/BC_TwoDimWriter.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/BC_DecoderResult.h ('k') | xfa/fxbarcode/BC_TwoDimWriter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/BC_TwoDimWriter.h
diff --git a/xfa/fxbarcode/BC_TwoDimWriter.h b/xfa/fxbarcode/BC_TwoDimWriter.h
index 625680413d8478304936c270ca29e8bc2eac4b4f..da2e6d9c4d4eca2cf95c475daad5d73d289e06de 100644
--- a/xfa/fxbarcode/BC_TwoDimWriter.h
+++ b/xfa/fxbarcode/BC_TwoDimWriter.h
@@ -15,7 +15,8 @@ class CFX_RenderDevice;
class CBC_TwoDimWriter : public CBC_Writer {
public:
CBC_TwoDimWriter();
- virtual ~CBC_TwoDimWriter();
+ ~CBC_TwoDimWriter() override;
+
virtual void RenderResult(uint8_t* code,
int32_t codeWidth,
int32_t codeHeight,
@@ -24,7 +25,7 @@ class CBC_TwoDimWriter : public CBC_Writer {
virtual void RenderDeviceResult(CFX_RenderDevice* device,
const CFX_Matrix* matrix);
virtual FX_BOOL SetErrorCorrectionLevel(int32_t level) = 0;
- virtual int32_t GetErrorCorrectionLevel() { return m_iCorrectLevel; }
+ virtual int32_t GetErrorCorrectionLevel();
protected:
int32_t m_iCorrectLevel;
« no previous file with comments | « xfa/fxbarcode/BC_DecoderResult.h ('k') | xfa/fxbarcode/BC_TwoDimWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698