summaryrefslogtreecommitdiff
path: root/fxjs/cjx_node.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-02 18:17:08 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-02 18:17:08 +0000
commit019c1c61b7bf3f3573ce158c9735f3c1b1db7c68 (patch)
treebbab96be575118a1928437291a419208b9b356ca /fxjs/cjx_node.h
parent69cb91483879db27fd95e85d3d4ee7dc7093e126 (diff)
downloadpdfium-019c1c61b7bf3f3573ce158c9735f3c1b1db7c68.tar.xz
Remove default params from CJX_Node::SetScriptContent
This CL removes the default values and adds them to the call sites as needed. Change-Id: I7c9654a7b6320f1c81a129808b3afa3eed9d4159 Reviewed-on: https://pdfium-review.googlesource.com/17471 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/cjx_node.h')
-rw-r--r--fxjs/cjx_node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h
index ca94a8fff0..442e0d57e3 100644
--- a/fxjs/cjx_node.h
+++ b/fxjs/cjx_node.h
@@ -440,9 +440,9 @@ class CJX_Node : public CJX_Object {
bool SetScriptContent(const WideString& wsContent,
const WideString& wsXMLValue,
- bool bNotify = true,
- bool bScriptModify = false,
- bool bSyncData = true);
+ bool bNotify,
+ bool bScriptModify,
+ bool bSyncData);
WideString GetScriptContent(bool bScriptModify = false);
XFA_MAPMODULEDATA* CreateMapModuleData();