| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "xfa/fxfa/app/xfa_ffdochandler.h" | 7 #include "xfa/fxfa/app/xfa_ffdochandler.h" |
| 8 | 8 |
| 9 #include "xfa/fxfa/app/xfa_ffdoc.h" | 9 #include "xfa/fxfa/app/xfa_ffdoc.h" |
| 10 #include "xfa/fxfa/parser/xfa_script.h" | 10 #include "xfa/fxfa/parser/xfa_script.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 IXFA_DocView* CXFA_FFDocHandler::CreateDocView(IXFA_Doc* hDoc, | 33 IXFA_DocView* CXFA_FFDocHandler::CreateDocView(IXFA_Doc* hDoc, |
| 34 uint32_t dwView) { | 34 uint32_t dwView) { |
| 35 return static_cast<CXFA_FFDoc*>(hDoc)->CreateDocView(dwView); | 35 return static_cast<CXFA_FFDoc*>(hDoc)->CreateDocView(dwView); |
| 36 } | 36 } |
| 37 int32_t CXFA_FFDocHandler::CountPackages(IXFA_Doc* hDoc) { | 37 int32_t CXFA_FFDocHandler::CountPackages(IXFA_Doc* hDoc) { |
| 38 return 0; | 38 return 0; |
| 39 } | 39 } |
| 40 void CXFA_FFDocHandler::GetPackageName(IXFA_Doc* hDoc, | 40 void CXFA_FFDocHandler::GetPackageName(IXFA_Doc* hDoc, |
| 41 int32_t iPackage, | 41 int32_t iPackage, |
| 42 CFX_WideStringC& wsPackage) {} | 42 CFX_WideStringC& wsPackage) {} |
| 43 IFDE_XMLElement* CXFA_FFDocHandler::GetPackageData( | 43 CFDE_XMLElement* CXFA_FFDocHandler::GetPackageData( |
| 44 IXFA_Doc* hDoc, | 44 IXFA_Doc* hDoc, |
| 45 const CFX_WideStringC& wsPackage) { | 45 const CFX_WideStringC& wsPackage) { |
| 46 return static_cast<CXFA_FFDoc*>(hDoc)->GetPackageData(wsPackage); | 46 return static_cast<CXFA_FFDoc*>(hDoc)->GetPackageData(wsPackage); |
| 47 } | 47 } |
| 48 FX_BOOL CXFA_FFDocHandler::SavePackage(IXFA_Doc* hDoc, | 48 FX_BOOL CXFA_FFDocHandler::SavePackage(IXFA_Doc* hDoc, |
| 49 const CFX_WideStringC& wsPackage, | 49 const CFX_WideStringC& wsPackage, |
| 50 IFX_FileWrite* pFile, | 50 IFX_FileWrite* pFile, |
| 51 IXFA_ChecksumContext* pCSContext) { | 51 IXFA_ChecksumContext* pCSContext) { |
| 52 return static_cast<CXFA_FFDoc*>(hDoc) | 52 return static_cast<CXFA_FFDoc*>(hDoc) |
| 53 ->SavePackage(wsPackage, pFile, pCSContext); | 53 ->SavePackage(wsPackage, pFile, pCSContext); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 } | 101 } |
| 102 IXFA_ScriptContext* pScriptContext = pXFADoc->GetScriptContext(); | 102 IXFA_ScriptContext* pScriptContext = pXFADoc->GetScriptContext(); |
| 103 if (!pScriptContext) { | 103 if (!pScriptContext) { |
| 104 return FALSE; | 104 return FALSE; |
| 105 } | 105 } |
| 106 return pScriptContext->RunScript( | 106 return pScriptContext->RunScript( |
| 107 (XFA_SCRIPTLANGTYPE)eScriptType, wsScript, hRetValue, | 107 (XFA_SCRIPTLANGTYPE)eScriptType, wsScript, hRetValue, |
| 108 hThisObject ? (CXFA_Object*)FXJSE_Value_ToObject(hThisObject, NULL) | 108 hThisObject ? (CXFA_Object*)FXJSE_Value_ToObject(hThisObject, NULL) |
| 109 : NULL); | 109 : NULL); |
| 110 } | 110 } |
| OLD | NEW |