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

Unified Diff: xfa/fxbarcode/oned/BC_OnedEAN13Reader.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/oned/BC_OnedCode39Writer.h ('k') | xfa/fxbarcode/oned/BC_OnedEAN13Writer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/oned/BC_OnedEAN13Reader.h
diff --git a/xfa/fxbarcode/oned/BC_OnedEAN13Reader.h b/xfa/fxbarcode/oned/BC_OnedEAN13Reader.h
index 5656540250322d05cc11354261ae6c94da993935..ac53fd4f24cc461a5ecc999484c6abf3aec150bb 100644
--- a/xfa/fxbarcode/oned/BC_OnedEAN13Reader.h
+++ b/xfa/fxbarcode/oned/BC_OnedEAN13Reader.h
@@ -16,15 +16,10 @@ class CBC_OnedUPCAReader;
class CBC_OnedEAN13Reader : public CBC_OneDimReader {
public:
- static const int32_t FIRST_DIGIT_ENCODINGS[10];
-
CBC_OnedEAN13Reader();
- virtual ~CBC_OnedEAN13Reader();
+ ~CBC_OnedEAN13Reader() override;
- private:
- void DetermineFirstDigit(CFX_ByteString& result,
- int32_t lgPatternFound,
- int32_t& e);
+ static const int32_t FIRST_DIGIT_ENCODINGS[10];
protected:
friend class CBC_OnedUPCAReader;
@@ -32,7 +27,12 @@ class CBC_OnedEAN13Reader : public CBC_OneDimReader {
int32_t DecodeMiddle(CBC_CommonBitArray* row,
CFX_Int32Array* startRange,
CFX_ByteString& resultString,
- int32_t& e);
+ int32_t& e) override;
+
+ private:
+ void DetermineFirstDigit(CFX_ByteString& result,
+ int32_t lgPatternFound,
+ int32_t& e);
};
#endif // XFA_FXBARCODE_ONED_BC_ONEDEAN13READER_H_
« no previous file with comments | « xfa/fxbarcode/oned/BC_OnedCode39Writer.h ('k') | xfa/fxbarcode/oned/BC_OnedEAN13Writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698