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" 18 CScript_LogPseudoModel::CScript_LogPseudoModel(CXFA_Document* pDocument) 19 : CXFA_OrdinaryObject(pDocument, XFA_ELEMENT_LogPseudoModel) { 20 m_uScriptHash = XFA_HASHCODE_Log; 21 } 22 CScript_LogPseudoModel::~CScript_LogPseudoModel() {} 23 void CScript_LogPseudoModel::Script_LogPseudoModel_Message( 24 CFXJSE_Arguments* pArguments) {} 25 void CScript_LogPseudoModel::Script_LogPseudoModel_TraceEnabled( 26 CFXJSE_Arguments* pArguments) {} 27 void CScript_LogPseudoModel::Script_LogPseudoModel_TraceActivate( 28 CFXJSE_Arguments* pArguments) {} 29 void CScript_LogPseudoModel::Script_LogPseudoModel_TraceDeactivate( 30 CFXJSE_Arguments* pArguments) {} 31 void CScript_LogPseudoModel::Script_LogPseudoModel_Trace( 32 CFXJSE_Arguments* pArguments) {} 33