summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_dataexporter.cpp
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/fxfa/parser/cxfa_dataexporter.cpp
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/fxfa/parser/cxfa_dataexporter.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_dataexporter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/xfa/fxfa/parser/cxfa_dataexporter.cpp b/xfa/fxfa/parser/cxfa_dataexporter.cpp
index 1ec9c44de6..f97e8a34ed 100644
--- a/xfa/fxfa/parser/cxfa_dataexporter.cpp
+++ b/xfa/fxfa/parser/cxfa_dataexporter.cpp
@@ -198,7 +198,7 @@ void RegenerateFormFile_Changed(CXFA_Node* pNode,
break;
IFX_MemoryStream* pMemStream = IFX_MemoryStream::Create(true);
- IFX_Stream* pTempStream = IFX_Stream::CreateStream(
+ IFGAS_Stream* pTempStream = IFGAS_Stream::CreateStream(
(IFX_SeekableWriteStream*)pMemStream, FX_STREAMACCESS_Text |
FX_STREAMACCESS_Write |
FX_STREAMACCESS_Append);
@@ -317,7 +317,7 @@ void RegenerateFormFile_Changed(CXFA_Node* pNode,
}
void RegenerateFormFile_Container(CXFA_Node* pNode,
- IFX_Stream* pStream,
+ IFGAS_Stream* pStream,
bool bSaveXML = false) {
XFA_Element eType = pNode->GetElementType();
if (eType == XFA_Element::Field || eType == XFA_Element::Draw ||
@@ -371,7 +371,7 @@ void RegenerateFormFile_Container(CXFA_Node* pNode,
} // namespace
void XFA_DataExporter_RegenerateFormFile(CXFA_Node* pNode,
- IFX_Stream* pStream,
+ IFGAS_Stream* pStream,
const FX_CHAR* pChecksum,
bool bSaveXML) {
if (pNode->IsModelNode()) {
@@ -456,7 +456,7 @@ bool CXFA_DataExporter::Export(IFX_SeekableWriteStream* pWrite,
ASSERT(false);
return false;
}
- IFX_Stream* pStream = IFX_Stream::CreateStream(
+ IFGAS_Stream* pStream = IFGAS_Stream::CreateStream(
pWrite,
FX_STREAMACCESS_Text | FX_STREAMACCESS_Write | FX_STREAMACCESS_Append);
if (!pStream)
@@ -468,7 +468,7 @@ bool CXFA_DataExporter::Export(IFX_SeekableWriteStream* pWrite,
return bRet;
}
-bool CXFA_DataExporter::Export(IFX_Stream* pStream,
+bool CXFA_DataExporter::Export(IFGAS_Stream* pStream,
CXFA_Node* pNode,
uint32_t dwFlag,
const FX_CHAR* pChecksum) {