summaryrefslogtreecommitdiff
path: root/xfa/fde/xml/fde_xml_imp.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-12-02 10:53:30 -0800
committerCommit bot <commit-bot@chromium.org>2016-12-02 10:53:30 -0800
commit0527ec571a8842b84f5161dc67f8da439e65eb12 (patch)
treed645df1008a5dcd6ea3224080cfc6f7779706c68 /xfa/fde/xml/fde_xml_imp.h
parent8b6a0a540563c6308fa03df34c90257e0bb65598 (diff)
downloadpdfium-0527ec571a8842b84f5161dc67f8da439e65eb12.tar.xz
Rename IFX_Stream to IFGAS_Stream.
It's a separate hierarchy unrelated to the IFX_*Stream classes. Also rename CFX_Stream to CFGAS_Stream, and so forth. Review-Url: https://codereview.chromium.org/2535723010
Diffstat (limited to 'xfa/fde/xml/fde_xml_imp.h')
-rw-r--r--xfa/fde/xml/fde_xml_imp.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/xfa/fde/xml/fde_xml_imp.h b/xfa/fde/xml/fde_xml_imp.h
index 1119ef2ff5..924f958b86 100644
--- a/xfa/fde/xml/fde_xml_imp.h
+++ b/xfa/fde/xml/fde_xml_imp.h
@@ -63,7 +63,7 @@ class CFDE_XMLNode : public CFX_Target {
bool InsertNodeItem(CFDE_XMLNode::NodeItem eItem, CFDE_XMLNode* pNode);
CFDE_XMLNode* RemoveNodeItem(CFDE_XMLNode::NodeItem eItem);
- void SaveXMLNode(IFX_Stream* pXMLStream);
+ void SaveXMLNode(IFGAS_Stream* pXMLStream);
CFDE_XMLNode* m_pParent;
CFDE_XMLNode* m_pChild;
@@ -197,14 +197,14 @@ class CFDE_XMLDoc : public CFX_Target {
int32_t DoLoad(IFX_Pause* pPause = nullptr);
void CloseXML();
CFDE_XMLNode* GetRoot() const { return m_pRoot; }
- void SaveXML(IFX_Stream* pXMLStream = nullptr, bool bSaveBOM = true);
- void SaveXMLNode(IFX_Stream* pXMLStream, CFDE_XMLNode* pNode);
+ void SaveXML(IFGAS_Stream* pXMLStream = nullptr, bool bSaveBOM = true);
+ void SaveXMLNode(IFGAS_Stream* pXMLStream, CFDE_XMLNode* pNode);
protected:
void Reset(bool bInitRoot);
void ReleaseParser();
- IFX_Stream* m_pStream;
+ IFGAS_Stream* m_pStream;
int32_t m_iStatus;
CFDE_XMLNode* m_pRoot;
CFDE_XMLSyntaxParser* m_pSyntaxParser;
@@ -261,7 +261,7 @@ class CFDE_XMLSyntaxParser : public CFX_Target {
~CFDE_XMLSyntaxParser() override;
void Release() { delete this; }
- void Init(IFX_Stream* pStream,
+ void Init(IFGAS_Stream* pStream,
int32_t iXMLPlaneSize,
int32_t iTextDataSize = 256);
@@ -320,7 +320,7 @@ class CFDE_XMLSyntaxParser : public CFX_Target {
void ParseTextChar(FX_WCHAR ch);
- IFX_Stream* m_pStream;
+ IFGAS_Stream* m_pStream;
int32_t m_iXMLPlaneSize;
int32_t m_iCurrentPos;
int32_t m_iCurrentNodeNum;