From bfa9a824a20f37c2dd7111012b46c929cf2ed8a0 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 9 Jun 2015 13:24:12 -0700 Subject: Merge to XFA: Use stdint.h types throughout PDFium. Near-automatic merge, plus re-running scripts to update additional usage. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1172793002 --- xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.h') diff --git a/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.h b/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.h index 713f343d98..bc35ebed1f 100644 --- a/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.h +++ b/xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.h @@ -13,12 +13,12 @@ class CBC_ReedSolomonEncoder private: CBC_ReedSolomonGF256* m_field; CFX_PtrArray m_cachedGenerators; - CBC_ReedSolomonGF256Poly* BuildGenerator(FX_INT32 degree, FX_INT32 &e); + CBC_ReedSolomonGF256Poly* BuildGenerator(int32_t degree, int32_t &e); public: CBC_ReedSolomonEncoder(CBC_ReedSolomonGF256 * field); virtual ~CBC_ReedSolomonEncoder(); - void Encode(CFX_Int32Array *toEncode, FX_INT32 ecBytes, FX_INT32 &e); + void Encode(CFX_Int32Array *toEncode, int32_t ecBytes, int32_t &e); virtual void Init(); }; #endif -- cgit v1.2.3