summaryrefslogtreecommitdiff
path: root/fxbarcode/common/BC_CommonBitMatrix.h
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2018-08-21 21:36:55 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-21 21:36:55 +0000
commitf47444256898ed42e01accffa9c97a4dd82c9013 (patch)
tree776ab46b8a8bbb82c862e0c41b56de3b9b5bfd1f /fxbarcode/common/BC_CommonBitMatrix.h
parent43927ad2f498a388b0fd4840b861a8bf01c790b1 (diff)
downloadpdfium-f47444256898ed42e01accffa9c97a4dd82c9013.tar.xz
Remove dead code in CBC_CommonBitMatrix.
Change-Id: Ie22666217b040872e576d58d0afa77138bca3870 Reviewed-on: https://pdfium-review.googlesource.com/40931 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fxbarcode/common/BC_CommonBitMatrix.h')
-rw-r--r--fxbarcode/common/BC_CommonBitMatrix.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/fxbarcode/common/BC_CommonBitMatrix.h b/fxbarcode/common/BC_CommonBitMatrix.h
index 51c3728a7a..5b22de2c25 100644
--- a/fxbarcode/common/BC_CommonBitMatrix.h
+++ b/fxbarcode/common/BC_CommonBitMatrix.h
@@ -18,17 +18,10 @@ class CBC_CommonBitMatrix {
CBC_CommonBitMatrix();
~CBC_CommonBitMatrix();
- void Init(int32_t dimension);
void Init(int32_t width, int32_t height);
bool Get(int32_t x, int32_t y) const;
void Set(int32_t x, int32_t y);
- void Flip(int32_t x, int32_t y);
- void Clear();
- bool SetRegion(int32_t left, int32_t top, int32_t width, int32_t height);
- void SetRow(int32_t y, CBC_CommonBitArray* row);
- CBC_CommonBitArray* GetCol(int32_t y, CBC_CommonBitArray* row);
- void SetCol(int32_t y, CBC_CommonBitArray* col);
int32_t GetWidth() const { return m_width; }
int32_t GetHeight() const { return m_height; }