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

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: fix 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
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..d5f918f222fea284569c6d2ccd2ee79cd0c2ef50 100644
--- a/xfa/fxbarcode/oned/BC_OnedEAN13Reader.h
+++ b/xfa/fxbarcode/oned/BC_OnedEAN13Reader.h
@@ -19,7 +19,7 @@ class CBC_OnedEAN13Reader : public CBC_OneDimReader {
static const int32_t FIRST_DIGIT_ENCODINGS[10];
CBC_OnedEAN13Reader();
- virtual ~CBC_OnedEAN13Reader();
+ ~CBC_OnedEAN13Reader() override;
private:
Lei Zhang 2016/06/15 00:04:30 BTW, private ahead of protected.
Wei Li 2016/06/15 00:32:39 Done.
void DetermineFirstDigit(CFX_ByteString& result,
@@ -32,7 +32,7 @@ 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;
};
#endif // XFA_FXBARCODE_ONED_BC_ONEDEAN13READER_H_

Powered by Google App Engine
This is Rietveld 408576698