diff options
author | dan sinclair <dsinclair@chromium.org> | 2018-04-17 18:23:28 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-17 18:23:28 +0000 |
commit | ffdae5fceb4e0b37bc649d99d12c15ccd6ae1b9e (patch) | |
tree | 3a719c2bf12bf2b16f473db9e739e9de15e5fafe /xfa/fxfa/parser/xfa_utils.h | |
parent | bc069b7a855998ab28f487d2f09152851dddb16a (diff) | |
download | pdfium-ffdae5fceb4e0b37bc649d99d12c15ccd6ae1b9e.tar.xz |
Use IFX_SeekableStream in xfa_utils
This CL converts xfa_utils to use an IFX_SeekableStream instead of a
CFX_SeekableStreamProxy.
Change-Id: I824b477351ac29d54118df2f3c5442c503aa3671
Reviewed-on: https://pdfium-review.googlesource.com/30852
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/xfa_utils.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/xfa_utils.h b/xfa/fxfa/parser/xfa_utils.h index d78b9ca57c..129dbec0ef 100644 --- a/xfa/fxfa/parser/xfa_utils.h +++ b/xfa/fxfa/parser/xfa_utils.h @@ -7,7 +7,7 @@ #ifndef XFA_FXFA_PARSER_XFA_UTILS_H_ #define XFA_FXFA_PARSER_XFA_UTILS_H_ -#include "core/fxcrt/cfx_seekablestreamproxy.h" +#include "core/fxcrt/fx_stream.h" #include "xfa/fxfa/fxfa_basic.h" class CFX_XMLElement; @@ -31,7 +31,7 @@ bool XFA_FieldIsMultiListBox(CXFA_Node* pFieldNode); void XFA_DataExporter_DealWithDataGroupNode(CXFA_Node* pDataNode); void XFA_DataExporter_RegenerateFormFile( CXFA_Node* pNode, - const RetainPtr<CFX_SeekableStreamProxy>& pStream, + const RetainPtr<IFX_SeekableStream>& pStream, bool bSaveXML); const XFA_SCRIPTATTRIBUTEINFO* XFA_GetScriptAttributeByName( |