Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(568)

Side by Side Diff: fpdfsdk/src/fpdfxfa/fpdfxfa_doc.cpp

Issue 1776913007: Split fpdf_parser_objects.cpp into per-class .cpp/.h files. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Address comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/src/fpdfview.cpp ('k') | fpdfsdk/src/fsdk_actionhandler.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/include/fpdfapi/cpdf_document.h" 8 #include "core/include/fpdfapi/cpdf_document.h"
9 #include "core/include/fpdfapi/cpdf_string.h"
8 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_app.h" 10 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_app.h"
9 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" 11 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h"
10 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" 12 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h"
11 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" 13 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h"
12 #include "fpdfsdk/include/fsdk_define.h" 14 #include "fpdfsdk/include/fsdk_define.h"
13 #include "fpdfsdk/include/fsdk_mgr.h" 15 #include "fpdfsdk/include/fsdk_mgr.h"
14 #include "fpdfsdk/include/javascript/IJavaScript.h" 16 #include "fpdfsdk/include/javascript/IJavaScript.h"
15 #include "public/fpdf_formfill.h" 17 #include "public/fpdf_formfill.h"
16 18
17 #define IDS_XFA_Validate_Input \ 19 #define IDS_XFA_Validate_Input \
(...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 } 1249 }
1248 1250
1249 return _GetHValueByName(szPropName, hValue, 1251 return _GetHValueByName(szPropName, hValue,
1250 m_pSDKDoc->GetEnv()->GetJSRuntime()); 1252 m_pSDKDoc->GetEnv()->GetJSRuntime());
1251 } 1253 }
1252 FX_BOOL CPDFXFA_Document::_GetHValueByName(const CFX_ByteStringC& utf8Name, 1254 FX_BOOL CPDFXFA_Document::_GetHValueByName(const CFX_ByteStringC& utf8Name,
1253 FXJSE_HVALUE hValue, 1255 FXJSE_HVALUE hValue,
1254 IJS_Runtime* runTime) { 1256 IJS_Runtime* runTime) {
1255 return runTime->GetHValueByName(utf8Name, hValue); 1257 return runTime->GetHValueByName(utf8Name, hValue);
1256 } 1258 }
OLDNEW
« no previous file with comments | « fpdfsdk/src/fpdfview.cpp ('k') | fpdfsdk/src/fsdk_actionhandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698