1 // Copyright 2014 PDFium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #include "xfa/src/foxitlib.h" 8 #include "xfa/src/fxfa/src/common/xfa_utils.h" 9 #include "xfa/src/fxfa/src/common/xfa_object.h" 10 #include "xfa/src/fxfa/src/common/xfa_document.h" 11 #include "xfa/src/fxfa/src/common/xfa_parser.h" 12 #include "xfa/src/fxfa/src/common/xfa_script.h" 13 #include "xfa/src/fxfa/src/common/xfa_docdata.h" 14 #include "xfa/src/fxfa/src/common/xfa_doclayout.h" 15 #include "xfa/src/fxfa/src/common/xfa_localemgr.h" 16 #include "xfa/src/fxfa/src/common/xfa_fm2jsapi.h" 17 #include "xfa_script_logpseudomodel.h" CScript_LogPseudoModel(CXFA_Document * pDocument)18CScript_LogPseudoModel::CScript_LogPseudoModel(CXFA_Document* pDocument) 19 : CXFA_OrdinaryObject(pDocument, XFA_ELEMENT_LogPseudoModel) { 20 m_uScriptHash = XFA_HASHCODE_Log; 21 } ~CScript_LogPseudoModel()22CScript_LogPseudoModel::~CScript_LogPseudoModel() {} Script_LogPseudoModel_Message(CFXJSE_Arguments * pArguments)23void CScript_LogPseudoModel::Script_LogPseudoModel_Message( 24 CFXJSE_Arguments* pArguments) {} Script_LogPseudoModel_TraceEnabled(CFXJSE_Arguments * pArguments)25void CScript_LogPseudoModel::Script_LogPseudoModel_TraceEnabled( 26 CFXJSE_Arguments* pArguments) {} Script_LogPseudoModel_TraceActivate(CFXJSE_Arguments * pArguments)27void CScript_LogPseudoModel::Script_LogPseudoModel_TraceActivate( 28 CFXJSE_Arguments* pArguments) {} Script_LogPseudoModel_TraceDeactivate(CFXJSE_Arguments * pArguments)29void CScript_LogPseudoModel::Script_LogPseudoModel_TraceDeactivate( 30 CFXJSE_Arguments* pArguments) {} Script_LogPseudoModel_Trace(CFXJSE_Arguments * pArguments)31void CScript_LogPseudoModel::Script_LogPseudoModel_Trace( 32 CFXJSE_Arguments* pArguments) {} 33