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

Unified Diff: xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h

Issue 1814233005: Make a few more const tables smaller. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: format Created 4 years, 9 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/fgas/layout/fgas_unicode.h ('k') | xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h
diff --git a/xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h b/xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h
index 8f1590172e71af6cee6faeff13dfb2b7033cb969..a988d3bd6b95af4b98f86fc6d39babf6cc2a70d8 100644
--- a/xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h
+++ b/xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h
@@ -10,9 +10,9 @@
class CBC_QRCoderErrorCorrectionLevel;
class CBC_QRCoderFormatInformation {
private:
- static const int32_t FORMAT_INFO_MASK_QR;
- static const int32_t FORMAT_INFO_DECODE_LOOKUP[32][2];
- static const int32_t BITS_SET_IN_HALF_BYTE[16];
+ static const uint16_t FORMAT_INFO_MASK_QR;
+ static const uint16_t FORMAT_INFO_DECODE_LOOKUP[32][2];
+ static const uint8_t BITS_SET_IN_HALF_BYTE[16];
CBC_QRCoderErrorCorrectionLevel* m_errorCorrectLevl;
uint8_t m_dataMask;
« no previous file with comments | « xfa/fgas/layout/fgas_unicode.h ('k') | xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698