diff options
author | weili <weili@chromium.org> | 2016-06-18 06:21:57 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-18 06:21:57 -0700 |
commit | 4ce94e118d66064715de5baebeb4b2b580dcac66 (patch) | |
tree | ba74181eb90675172d3c7f4be8e71ada3fbc9125 /xfa/fwl/lightwidget/cfwl_barcode.h | |
parent | 2fad11a8d9d2704cd9ee28b02373ad7ce19c65e3 (diff) | |
download | pdfium-4ce94e118d66064715de5baebeb4b2b580dcac66.tar.xz |
Make code compile with clang_use_chrome_plugin (part VI)
This change mainly contains files in xfa/fwl directory.
This is part of the efforts to make PDFium code compilable
by Clang chromium style plugins.
The changes are mainly the following:
-- move inline constructor/destructor of complex class/struct out-of-line;
-- add constructor/destructor of complex class/struct if not
explicitly defined;
-- add explicit out-of-line copy constructor when needed;
-- move inline virtual functions out-of-line;
-- Properly mark virtual functions with 'override';
-- some minor cleanups;
BUG=pdfium:469
Review-Url: https://codereview.chromium.org/2070583003
Diffstat (limited to 'xfa/fwl/lightwidget/cfwl_barcode.h')
-rw-r--r-- | xfa/fwl/lightwidget/cfwl_barcode.h | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/xfa/fwl/lightwidget/cfwl_barcode.h b/xfa/fwl/lightwidget/cfwl_barcode.h index 565ebb884e..1a22064a97 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; |