summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/xfa_object.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-06-28 07:43:51 -0700
committerCommit bot <commit-bot@chromium.org>2016-06-28 07:43:51 -0700
commit017052a077d8f900e3098b8f9115078a037ee805 (patch)
tree849af68a530e45ba66d9333393789dcec0f6561c /xfa/fxfa/parser/xfa_object.h
parent2d6dda170d84564f6ca5845ea934a886ac9bf746 (diff)
downloadpdfium-017052a077d8f900e3098b8f9115078a037ee805.tar.xz
Change CXFA_Node::GetClassName to returnchromium/2786chromium/2784
CXFA_Node::GetClassName currently takes an out parameter and returns void. This CL updates the signature to return the value and require no parameters. Review-Url: https://codereview.chromium.org/2104963002
Diffstat (limited to 'xfa/fxfa/parser/xfa_object.h')
-rw-r--r--xfa/fxfa/parser/xfa_object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_object.h b/xfa/fxfa/parser/xfa_object.h
index fd73d8bb2e..a838b17578 100644
--- a/xfa/fxfa/parser/xfa_object.h
+++ b/xfa/fxfa/parser/xfa_object.h
@@ -84,7 +84,7 @@ class CXFA_Object : public CFXJSE_HostObject {
const CXFA_NodeList* AsNodeList() const;
XFA_Element GetElementType() const;
- void GetClassName(CFX_WideStringC& wsName) const;
+ CFX_WideStringC GetClassName() const;
uint32_t GetClassHashCode() const;
void Script_ObjectClass_ClassName(CFXJSE_Value* pValue,
FX_BOOL bSetting,