diff options
author | tsepez <tsepez@chromium.org> | 2016-06-06 14:23:14 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-06 14:23:14 -0700 |
commit | 2e9cd3ae5f8a0bb01bcf3446f52becdddc6229e1 (patch) | |
tree | 99b5d826278908f4513997dea28da879f4ab1af9 /xfa/fde/cfde_txtedtbuf.cpp | |
parent | 6f4f2335cfd22d26db154fbd51ab553fb9902918 (diff) | |
download | pdfium-2e9cd3ae5f8a0bb01bcf3446f52becdddc6229e1.tar.xz |
Remove unused CFDE_TxtEdtEngine::SetBufChunkSize().
In turn, CFDE_TxtEdtBuf::SetChunkSize becomes unused.
Review-Url: https://codereview.chromium.org/2042743003
Diffstat (limited to 'xfa/fde/cfde_txtedtbuf.cpp')
-rw-r--r-- | xfa/fde/cfde_txtedtbuf.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/xfa/fde/cfde_txtedtbuf.cpp b/xfa/fde/cfde_txtedtbuf.cpp index 2f747a30cc..81b586f075 100644 --- a/xfa/fde/cfde_txtedtbuf.cpp +++ b/xfa/fde/cfde_txtedtbuf.cpp @@ -30,12 +30,6 @@ CFDE_TxtEdtBuf::~CFDE_TxtEdtBuf() { m_Chunks.RemoveAll(); } -FX_BOOL CFDE_TxtEdtBuf::SetChunkSize(int32_t nChunkSize) { - ASSERT(nChunkSize); - ResetChunkBuffer(kDefaultChunkCount, nChunkSize); - return TRUE; -} - int32_t CFDE_TxtEdtBuf::GetChunkSize() const { return m_nChunkSize; } |