diff options
author | tsepez <tsepez@chromium.org> | 2016-12-14 20:10:37 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-14 20:10:37 -0800 |
commit | 72a22025ec4402178cd0b27239bf77cf3a953949 (patch) | |
tree | b9b8a7c42dbe020b08cf44df0902b4e53a8e2ece /core/fxcrt/fx_basic_buffer.cpp | |
parent | 37b12ad873198a9644f3de0d2eff001285e1ad42 (diff) | |
download | pdfium-72a22025ec4402178cd0b27239bf77cf3a953949.tar.xz |
Remove unused m_OtfFontData.chromium/2953
In turn, this makes CFX_BinaryBuf::AttachData() unused.
Review-Url: https://codereview.chromium.org/2578793002
Diffstat (limited to 'core/fxcrt/fx_basic_buffer.cpp')
-rw-r--r-- | core/fxcrt/fx_basic_buffer.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/fxcrt/fx_basic_buffer.cpp b/core/fxcrt/fx_basic_buffer.cpp index e6d05528ae..fcd156b079 100644 --- a/core/fxcrt/fx_basic_buffer.cpp +++ b/core/fxcrt/fx_basic_buffer.cpp @@ -42,12 +42,6 @@ uint8_t* CFX_BinaryBuf::DetachBuffer() { return m_pBuffer.release(); } -void CFX_BinaryBuf::AttachData(uint8_t* buffer, FX_STRSIZE size) { - m_pBuffer.reset(buffer); - m_DataSize = size; - m_AllocSize = size; -} - void CFX_BinaryBuf::EstimateSize(FX_STRSIZE size, FX_STRSIZE step) { m_AllocStep = step; if (m_AllocSize < size) |