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/pdf417/BC_PDF417BarcodeMetadata.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp') diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp b/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp index 456c0e6f2e..fc3f255ec0 100644 --- a/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp @@ -22,7 +22,7 @@ #include "../barcode.h" #include "BC_PDF417BarcodeMetadata.h" -CBC_BarcodeMetadata::CBC_BarcodeMetadata(FX_INT32 columnCount, FX_INT32 rowCountUpperPart, FX_INT32 rowCountLowerPart, FX_INT32 errorCorrectionLevel) +CBC_BarcodeMetadata::CBC_BarcodeMetadata(int32_t columnCount, int32_t rowCountUpperPart, int32_t rowCountLowerPart, int32_t errorCorrectionLevel) { m_columnCount = columnCount; m_rowCountUpperPart = rowCountUpperPart; @@ -33,23 +33,23 @@ CBC_BarcodeMetadata::CBC_BarcodeMetadata(FX_INT32 columnCount, FX_INT32 rowCount CBC_BarcodeMetadata::~CBC_BarcodeMetadata() { } -FX_INT32 CBC_BarcodeMetadata::getColumnCount() +int32_t CBC_BarcodeMetadata::getColumnCount() { return m_columnCount; } -FX_INT32 CBC_BarcodeMetadata::getErrorCorrectionLevel() +int32_t CBC_BarcodeMetadata::getErrorCorrectionLevel() { return m_errorCorrectionLevel; } -FX_INT32 CBC_BarcodeMetadata::getRowCount() +int32_t CBC_BarcodeMetadata::getRowCount() { return m_rowCount; } -FX_INT32 CBC_BarcodeMetadata::getRowCountUpperPart() +int32_t CBC_BarcodeMetadata::getRowCountUpperPart() { return m_rowCountUpperPart; } -FX_INT32 CBC_BarcodeMetadata::getRowCountLowerPart() +int32_t CBC_BarcodeMetadata::getRowCountLowerPart() { return m_rowCountLowerPart; } -- cgit v1.2.3