summaryrefslogtreecommitdiff
path: root/core/fxcrt/fx_basic_buffer.cpp
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2017-08-15 15:59:04 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-08-15 20:40:41 +0000
commit6e524ad89eac22f0e5d5475652ec78c609b788e8 (patch)
treee431f75773757b1cbec0582d1ddf835cbeb7e237 /core/fxcrt/fx_basic_buffer.cpp
parentbff66f1d8d74d3ea22b3b4da775588e07509f6ac (diff)
downloadpdfium-6e524ad89eac22f0e5d5475652ec78c609b788e8.tar.xz
Remove CFX_ByteTextBuf.
Bug: pdfium:731 Change-Id: I00d2097bca369aa4d1743716c4b2615e37a8444d Reviewed-on: https://pdfium-review.googlesource.com/10910 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_basic_buffer.cpp')
-rw-r--r--core/fxcrt/fx_basic_buffer.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/core/fxcrt/fx_basic_buffer.cpp b/core/fxcrt/fx_basic_buffer.cpp
index bcf0570d32..a359bdd5d0 100644
--- a/core/fxcrt/fx_basic_buffer.cpp
+++ b/core/fxcrt/fx_basic_buffer.cpp
@@ -95,37 +95,6 @@ void CFX_BinaryBuf::InsertBlock(FX_STRSIZE pos,
m_DataSize += size;
}
-CFX_ByteTextBuf& CFX_ByteTextBuf::operator<<(const CFX_ByteStringC& lpsz) {
- AppendBlock(lpsz.raw_str(), lpsz.GetLength());
- return *this;
-}
-
-CFX_ByteTextBuf& CFX_ByteTextBuf::operator<<(int i) {
- char buf[32];
- FXSYS_itoa(i, buf, 10);
- AppendBlock(buf, FXSYS_strlen(buf));
- return *this;
-}
-
-CFX_ByteTextBuf& CFX_ByteTextBuf::operator<<(uint32_t i) {
- char buf[32];
- FXSYS_itoa(i, buf, 10);
- AppendBlock(buf, FXSYS_strlen(buf));
- return *this;
-}
-
-CFX_ByteTextBuf& CFX_ByteTextBuf::operator<<(double f) {
- char buf[32];
- FX_STRSIZE len = FX_ftoa((float)f, buf);
- AppendBlock(buf, len);
- return *this;
-}
-
-CFX_ByteTextBuf& CFX_ByteTextBuf::operator<<(const CFX_ByteTextBuf& buf) {
- AppendBlock(buf.m_pBuffer.get(), buf.m_DataSize);
- return *this;
-}
-
void CFX_WideTextBuf::AppendChar(wchar_t ch) {
ExpandBuf(sizeof(wchar_t));
*(wchar_t*)(m_pBuffer.get() + m_DataSize) = ch;