diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-03-21 12:26:54 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-03-21 12:26:54 -0700 |
commit | 4161c5ca6c5438476bf07b6dacfafb61ea611cc5 (patch) | |
tree | 76b021ad93546c362d6e6089c18e362aebe247aa /xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h | |
parent | a98600aeb8d815c297834aa5006f5c3ea20dde6d (diff) | |
download | pdfium-4161c5ca6c5438476bf07b6dacfafb61ea611cc5.tar.xz |
Make a few more const tables smaller.chromium/2689chromium/2688
Remove some tables from .h file (risk of duplication).
R=ochang@chromium.org
Review URL: https://codereview.chromium.org/1814233005 .
Diffstat (limited to 'xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h')
-rw-r--r-- | xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h b/xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h index 8f1590172e..a988d3bd6b 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; |