summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_image.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-02 19:11:57 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-02 19:11:57 +0000
commit23aa2b0f8a3202337a40e8dcf3d8340bfd42e004 (patch)
tree51da1418339b19eb3ba9a175dc10e8ed29dbc3e9 /xfa/fxfa/parser/cxfa_image.cpp
parent3ac07ffafea1ee4d3cf985e32692849dd3fcfdfb (diff)
downloadpdfium-23aa2b0f8a3202337a40e8dcf3d8340bfd42e004.tar.xz
Remove default values from CJX_Node::SetCData
This CL removes the default values from SetCData and inlines at the call sites. Change-Id: I664338a8c7fec2ee9ec0c9ed9f892e57ea1ced43 Reviewed-on: https://pdfium-review.googlesource.com/17534 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_image.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_image.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_image.cpp b/xfa/fxfa/parser/cxfa_image.cpp
index b0afca0d68..08a10884f4 100644
--- a/xfa/fxfa/parser/cxfa_image.cpp
+++ b/xfa/fxfa/parser/cxfa_image.cpp
@@ -37,12 +37,14 @@ bool CXFA_Image::GetContent(WideString& wsText) {
}
bool CXFA_Image::SetContentType(const WideString& wsContentType) {
- return m_pNode->JSNode()->SetCData(XFA_ATTRIBUTE_ContentType, wsContentType);
+ return m_pNode->JSNode()->SetCData(XFA_ATTRIBUTE_ContentType, wsContentType,
+ false, false);
}
bool CXFA_Image::SetHref(const WideString& wsHref) {
if (m_bDefValue)
- return m_pNode->JSNode()->SetCData(XFA_ATTRIBUTE_Href, wsHref);
+ return m_pNode->JSNode()->SetCData(XFA_ATTRIBUTE_Href, wsHref, false,
+ false);
return m_pNode->JSNode()->SetAttribute(XFA_ATTRIBUTE_Href,
wsHref.AsStringView(), false);
}