From c1df5d4375027aa9d0b88f456f95177c016e8cad Mon Sep 17 00:00:00 2001 From: dsinclair Date: Mon, 18 Jul 2016 06:36:51 -0700 Subject: Pass element hash and name into CXFA_Object constructor. Providing the element hash and name in the constructor allows us to remove the calls to XFA_GetElementByID in the get methods. Review-Url: https://codereview.chromium.org/2101403002 --- xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp') diff --git a/xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp b/xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp index 2ede85e204..9153761abf 100644 --- a/xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp +++ b/xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp @@ -28,8 +28,11 @@ CXFA_Node* ToNode(CFXJSE_Value* pValue, CFXJSE_Class* pClass) { CScript_HostPseudoModel::CScript_HostPseudoModel(CXFA_Document* pDocument) : CXFA_Object(pDocument, XFA_ObjectType::Object, - XFA_Element::HostPseudoModel) {} + XFA_Element::HostPseudoModel, + CFX_WideStringC(L"hostPseudoModel")) {} + CScript_HostPseudoModel::~CScript_HostPseudoModel() {} + void CScript_HostPseudoModel::LoadString(CFXJSE_Value* pValue, CXFA_FFNotify* pNotify, uint32_t dwFlag) { -- cgit v1.2.3