summaryrefslogtreecommitdiff
path: root/core/fxcrt/xml/cfx_saxcontext.h
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2017-06-16 12:00:40 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-06-19 14:55:58 +0000
commit7ca47d55c9cbbec7e0a0b0beffffe348ae655086 (patch)
treeccae777513d025caa9fb5940933b2bb3a081602c /core/fxcrt/xml/cfx_saxcontext.h
parentcff4624521c5e0bfc0f4ee667ff90f37785db107 (diff)
downloadpdfium-7ca47d55c9cbbec7e0a0b0beffffe348ae655086.tar.xz
Converting CFX_ByteTextBuf to ostringstream in SAX.
Bug: pdfium:731 Change-Id: Ic492e8900c4a69082ff9c2384006a4e6bfa3313e Reviewed-on: https://pdfium-review.googlesource.com/6592 Reviewed-by: Lei Zhang <thestig@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'core/fxcrt/xml/cfx_saxcontext.h')
-rw-r--r--core/fxcrt/xml/cfx_saxcontext.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/fxcrt/xml/cfx_saxcontext.h b/core/fxcrt/xml/cfx_saxcontext.h
index 7afebed98d..fcc889f7a3 100644
--- a/core/fxcrt/xml/cfx_saxcontext.h
+++ b/core/fxcrt/xml/cfx_saxcontext.h
@@ -7,15 +7,18 @@
#ifndef CORE_FXCRT_XML_CFX_SAXCONTEXT_H_
#define CORE_FXCRT_XML_CFX_SAXCONTEXT_H_
+#include <sstream>
+
#include "core/fxcrt/fx_basic.h"
#include "core/fxcrt/fx_string.h"
#include "core/fxcrt/xml/cfx_saxreader.h"
class CFX_SAXContext {
public:
- CFX_SAXContext() : m_eNode(CFX_SAXItem::Type::Unknown) {}
+ CFX_SAXContext();
+ ~CFX_SAXContext();
- CFX_ByteTextBuf m_TextBuf;
+ std::ostringstream m_TextBuf;
CFX_ByteString m_bsTagName;
CFX_SAXItem::Type m_eNode;
};