diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-04-23 20:03:19 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-23 20:03:19 +0000 |
commit | a3dd6c390ebc2af63fc0b706a4747315acef02bf (patch) | |
tree | dc6986faa242a997abbb01696a9935b829868fea /core/fxcrt/xml/cfx_xmlinstruction.cpp | |
parent | 76e202c638e343cb59f255df59580f4d658d2f9c (diff) | |
download | pdfium-a3dd6c390ebc2af63fc0b706a4747315acef02bf.tar.xz |
Change CFX_XML Save to take a write stream
This CL changes CFX_XML to use an IFX_SeekableWriteStream instead of
the more generic IFX_SeekableStream.
This is a reland of https://pdfium-review.googlesource.com/c/pdfium/+/30877
without pulling in the XML lifetime changes.
Change-Id: I5091da6ad37715fff77f3f22d35ab0105f2bc3d0
Reviewed-on: https://pdfium-review.googlesource.com/31194
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt/xml/cfx_xmlinstruction.cpp')
-rw-r--r-- | core/fxcrt/xml/cfx_xmlinstruction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/fxcrt/xml/cfx_xmlinstruction.cpp b/core/fxcrt/xml/cfx_xmlinstruction.cpp index 7b844e6808..d0f5cbb68b 100644 --- a/core/fxcrt/xml/cfx_xmlinstruction.cpp +++ b/core/fxcrt/xml/cfx_xmlinstruction.cpp @@ -40,7 +40,8 @@ bool CFX_XMLInstruction::IsAcrobat() const { return name_ == L"acrobat"; } -void CFX_XMLInstruction::Save(const RetainPtr<IFX_SeekableStream>& pXMLStream) { +void CFX_XMLInstruction::Save( + const RetainPtr<IFX_SeekableWriteStream>& pXMLStream) { if (name_.CompareNoCase(L"xml") == 0) { pXMLStream->WriteString("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"); return; |