summaryrefslogtreecommitdiff
path: root/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2018-08-22 21:11:36 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-22 21:11:36 +0000
commitbd6db24c0b78831542656ce8c3268fc55394df01 (patch)
treece6f68fe01d146d5af9decfd19d232a6d0481b8e /fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h
parent15f1a88dece664ae7300d9a60fe124cec1f2b9de (diff)
downloadpdfium-bd6db24c0b78831542656ce8c3268fc55394df01.tar.xz
Remove unused barcode matrix scaling code.
Change-Id: Id15088a40fd308ba91317e95a6fa8075e7306608 Reviewed-on: https://pdfium-review.googlesource.com/40992 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h')
-rw-r--r--fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h
index 38744471ba..43906d8821 100644
--- a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h
+++ b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h
@@ -23,8 +23,6 @@ class CBC_BarcodeMatrix {
int32_t getHeight() const { return m_outHeight; }
void nextRow();
std::vector<uint8_t>& getMatrix();
- std::vector<uint8_t>& getScaledMatrix(int32_t scale);
- std::vector<uint8_t>& getScaledMatrix(int32_t xScale, int32_t yScale);
private:
std::vector<std::unique_ptr<CBC_BarcodeRow>> m_matrix;