| 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 "core/include/fpdfapi/cpdf_array.h" | 7 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
| 8 #include "core/include/fpdfapi/cpdf_document.h" | 8 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 9 #include "core/include/fpdfapi/cpdf_string.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h" |
| 10 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_app.h" | 10 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_app.h" |
| 11 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | 11 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" |
| 12 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" | 12 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" |
| 13 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" | 13 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" |
| 14 #include "fpdfsdk/include/fsdk_define.h" | 14 #include "fpdfsdk/include/fsdk_define.h" |
| 15 #include "fpdfsdk/include/fsdk_mgr.h" | 15 #include "fpdfsdk/include/fsdk_mgr.h" |
| 16 #include "fpdfsdk/include/javascript/IJavaScript.h" | 16 #include "fpdfsdk/include/javascript/IJavaScript.h" |
| 17 #include "public/fpdf_formfill.h" | 17 #include "public/fpdf_formfill.h" |
| 18 | 18 |
| 19 #define IDS_XFA_Validate_Input \ | 19 #define IDS_XFA_Validate_Input \ |
| (...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1247 } | 1247 } |
| 1248 | 1248 |
| 1249 return _GetHValueByName(szPropName, hValue, | 1249 return _GetHValueByName(szPropName, hValue, |
| 1250 m_pSDKDoc->GetEnv()->GetJSRuntime()); | 1250 m_pSDKDoc->GetEnv()->GetJSRuntime()); |
| 1251 } | 1251 } |
| 1252 FX_BOOL CPDFXFA_Document::_GetHValueByName(const CFX_ByteStringC& utf8Name, | 1252 FX_BOOL CPDFXFA_Document::_GetHValueByName(const CFX_ByteStringC& utf8Name, |
| 1253 FXJSE_HVALUE hValue, | 1253 FXJSE_HVALUE hValue, |
| 1254 IJS_Runtime* runTime) { | 1254 IJS_Runtime* runTime) { |
| 1255 return runTime->GetHValueByName(utf8Name, hValue); | 1255 return runTime->GetHValueByName(utf8Name, hValue); |
| 1256 } | 1256 } |
| OLD | NEW |