summaryrefslogtreecommitdiff
path: root/xfa/fde/css/cfde_csstextbuf.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-06-23 23:15:07 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-06-26 21:03:03 +0000
commit4ac12f0e49bfd1e0456a8f2314727deec8648936 (patch)
tree9486f1402fd4cfba52a88fd27a8a31985076dc45 /xfa/fde/css/cfde_csstextbuf.h
parentf76e9d33b6246358d34cb476dbf197788fe49425 (diff)
downloadpdfium-4ac12f0e49bfd1e0456a8f2314727deec8648936.tar.xz
Remove a const_cast in CFDE_CSSTextBuf.
Change-Id: If6d2cce6a4185c6726df7d6b9d44d74efe0be11d Reviewed-on: https://pdfium-review.googlesource.com/6931 Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fde/css/cfde_csstextbuf.h')
-rw-r--r--xfa/fde/css/cfde_csstextbuf.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/xfa/fde/css/cfde_csstextbuf.h b/xfa/fde/css/cfde_csstextbuf.h
index eaeb085971..be6800fe3a 100644
--- a/xfa/fde/css/cfde_csstextbuf.h
+++ b/xfa/fde/css/cfde_csstextbuf.h
@@ -29,20 +29,22 @@ class CFDE_CSSTextBuf {
void Subtract(int32_t iStart, int32_t iLength);
bool IsEOF() const { return m_iDatPos >= m_iDatLen; }
- wchar_t GetAt(int32_t index) const { return m_pBuffer[index]; }
- wchar_t GetChar() const { return m_pBuffer[m_iDatPos]; }
+ wchar_t GetAt(int32_t index) const { return GetBuffer()[index]; }
+ wchar_t GetChar() const { return GetBuffer()[m_iDatPos]; }
wchar_t GetNextChar() const {
- return (m_iDatPos + 1 >= m_iDatLen) ? 0 : m_pBuffer[m_iDatPos + 1];
+ return (m_iDatPos + 1 >= m_iDatLen) ? 0 : GetBuffer()[m_iDatPos + 1];
}
void MoveNext() { m_iDatPos++; }
int32_t GetLength() const { return m_iDatLen; }
- const wchar_t* GetBuffer() const { return m_pBuffer; }
+ const wchar_t* GetBuffer() const;
protected:
bool ExpandBuf(int32_t iDesiredSize);
+
bool m_bExtBuf;
+ const wchar_t* m_pExtBuffer;
wchar_t* m_pBuffer;
int32_t m_iBufLen;
int32_t m_iDatLen;