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

Unified Diff: xfa/fwl/lightwidget/cfwl_barcode.h

Issue 2070583003: Make code compile with clang_use_chrome_plugin (part VI) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: better macros 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/fwl/core/ifwl_tooltiptarget.h ('k') | xfa/fwl/lightwidget/cfwl_barcode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/lightwidget/cfwl_barcode.h
diff --git a/xfa/fwl/lightwidget/cfwl_barcode.h b/xfa/fwl/lightwidget/cfwl_barcode.h
index 565ebb884e970faf33372b035107737a95df2343..1a22064a97bcdaf7c76f20e8312d0df56bc6676f 100644
--- a/xfa/fwl/lightwidget/cfwl_barcode.h
+++ b/xfa/fwl/lightwidget/cfwl_barcode.h
@@ -80,28 +80,31 @@ class CFWL_Barcode : public CFWL_Edit {
protected:
CFWL_Barcode();
- virtual ~CFWL_Barcode();
+ ~CFWL_Barcode() override;
class CFWL_BarcodeDP : public IFWL_BarcodeDP {
public:
- CFWL_BarcodeDP() : m_dwAttributeMask(FWL_BCDATTRIBUTE_NONE) {}
+ CFWL_BarcodeDP();
+ // IFWL_DataProvider
FWL_Error GetCaption(IFWL_Widget* pWidget,
CFX_WideString& wsCaption) override;
- BC_CHAR_ENCODING GetCharEncoding() override { return m_eCharEncoding; }
- int32_t GetModuleHeight() override { return m_nModuleHeight; }
- int32_t GetModuleWidth() override { return m_nModuleWidth; }
- int32_t GetDataLength() override { return m_nDataLength; }
- int32_t GetCalChecksum() override { return m_nCalChecksum; }
- FX_BOOL GetPrintChecksum() override { return m_bPrintChecksum; }
- BC_TEXT_LOC GetTextLocation() override { return m_eTextLocation; }
- int32_t GetWideNarrowRatio() override { return m_nWideNarrowRatio; }
- FX_CHAR GetStartChar() override { return m_cStartChar; }
- FX_CHAR GetEndChar() override { return m_cEndChar; }
- int32_t GetVersion() override { return m_nVersion; }
- int32_t GetErrorCorrectionLevel() override { return m_nECLevel; }
- FX_BOOL GetTruncated() override { return m_bTruncated; }
- uint32_t GetBarcodeAttributeMask() override { return m_dwAttributeMask; }
+
+ // IFWL_BarcodeDP
+ BC_CHAR_ENCODING GetCharEncoding() override;
+ int32_t GetModuleHeight() override;
+ int32_t GetModuleWidth() override;
+ int32_t GetDataLength() override;
+ int32_t GetCalChecksum() override;
+ FX_BOOL GetPrintChecksum() override;
+ BC_TEXT_LOC GetTextLocation() override;
+ int32_t GetWideNarrowRatio() override;
+ FX_CHAR GetStartChar() override;
+ FX_CHAR GetEndChar() override;
+ int32_t GetVersion() override;
+ int32_t GetErrorCorrectionLevel() override;
+ FX_BOOL GetTruncated() override;
+ uint32_t GetBarcodeAttributeMask() override;
BC_CHAR_ENCODING m_eCharEncoding;
int32_t m_nModuleHeight, m_nModuleWidth;
« no previous file with comments | « xfa/fwl/core/ifwl_tooltiptarget.h ('k') | xfa/fwl/lightwidget/cfwl_barcode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698