summaryrefslogtreecommitdiff
path: root/fxbarcode/qrcode/BC_QRCodeWriter.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-04-03 16:40:51 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-04-04 19:04:37 +0000
commit03d58937248fa244cbf02a3d38d430a513500311 (patch)
tree9ea96b01b0f2f2464bd9d5c49e76dd8e0466a8b0 /fxbarcode/qrcode/BC_QRCodeWriter.h
parentc3202a95773d7a2c95038ad45c5ba2c9e095e67b (diff)
downloadpdfium-03d58937248fa244cbf02a3d38d430a513500311.tar.xz
Clean up QRCoderEncoder and friends.
Remove a bunch of unused code, including gotos. Fix some potential memory leaks. Change-Id: Ia2775e2ab176f4741b765e259a24a293a5717394 Reviewed-on: https://pdfium-review.googlesource.com/3560 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxbarcode/qrcode/BC_QRCodeWriter.h')
-rw-r--r--fxbarcode/qrcode/BC_QRCodeWriter.h19
1 files changed, 2 insertions, 17 deletions
diff --git a/fxbarcode/qrcode/BC_QRCodeWriter.h b/fxbarcode/qrcode/BC_QRCodeWriter.h
index 185e10aa37..42d77fc9f2 100644
--- a/fxbarcode/qrcode/BC_QRCodeWriter.h
+++ b/fxbarcode/qrcode/BC_QRCodeWriter.h
@@ -15,31 +15,16 @@ class CBC_QRCodeWriter : public CBC_TwoDimWriter {
CBC_QRCodeWriter();
~CBC_QRCodeWriter() override;
+ static void ReleaseAll();
+
uint8_t* Encode(const CFX_WideString& contents,
int32_t ecLevel,
int32_t& outWidth,
int32_t& outHeight,
int32_t& e);
- uint8_t* Encode(const CFX_ByteString& contents,
- BCFORMAT format,
- int32_t& outWidth,
- int32_t& outHeight,
- int32_t hints,
- int32_t& e);
- uint8_t* Encode(const CFX_ByteString& contents,
- BCFORMAT format,
- int32_t& outWidth,
- int32_t& outHeight,
- int32_t& e);
- bool SetVersion(int32_t version);
// CBC_TwoDimWriter
bool SetErrorCorrectionLevel(int32_t level) override;
-
- static void ReleaseAll();
-
- private:
- int32_t m_iVersion;
};
#endif // FXBARCODE_QRCODE_BC_QRCODEWRITER_H_