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

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

Issue 2335243002: Split fsdk_mgr files apart. (Closed)
Patch Set: Sort headers Created 4 years, 3 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
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 "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h" 7 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h"
8 8
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h" 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h"
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h"
13 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" 13 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h"
14 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h" 14 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h"
15 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h" 15 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h"
16 #include "fpdfsdk/include/cpdfdoc_environment.h"
17 #include "fpdfsdk/include/cpdfsdk_document.h"
18 #include "fpdfsdk/include/cpdfsdk_interform.h"
19 #include "fpdfsdk/include/cpdfsdk_pageview.h"
16 #include "fpdfsdk/include/fsdk_define.h" 20 #include "fpdfsdk/include/fsdk_define.h"
17 #include "fpdfsdk/include/cpdfsdk_interform.h"
18 #include "fpdfsdk/include/fsdk_mgr.h"
19 #include "fpdfsdk/javascript/ijs_runtime.h" 21 #include "fpdfsdk/javascript/ijs_runtime.h"
20 #include "public/fpdf_formfill.h" 22 #include "public/fpdf_formfill.h"
21 #include "xfa/fxfa/include/cxfa_eventparam.h" 23 #include "xfa/fxfa/include/cxfa_eventparam.h"
22 #include "xfa/fxfa/include/xfa_ffapp.h" 24 #include "xfa/fxfa/include/xfa_ffapp.h"
23 #include "xfa/fxfa/include/xfa_ffdoc.h" 25 #include "xfa/fxfa/include/xfa_ffdoc.h"
24 #include "xfa/fxfa/include/xfa_ffdocview.h" 26 #include "xfa/fxfa/include/xfa_ffdocview.h"
25 #include "xfa/fxfa/include/xfa_ffpageview.h" 27 #include "xfa/fxfa/include/xfa_ffpageview.h"
26 #include "xfa/fxfa/include/xfa_ffwidget.h" 28 #include "xfa/fxfa/include/xfa_ffwidget.h"
27 #include "xfa/fxfa/include/xfa_ffwidgethandler.h" 29 #include "xfa/fxfa/include/xfa_ffwidgethandler.h"
28 30
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after
1267 1269
1268 return m_pSDKDoc->GetEnv()->GetJSRuntime()->GetValueByName(szPropName, 1270 return m_pSDKDoc->GetEnv()->GetJSRuntime()->GetValueByName(szPropName,
1269 pValue); 1271 pValue);
1270 } 1272 }
1271 1273
1272 CPDF_Document* CPDFXFA_Document::OpenPDF(CXFA_FFDoc* hDoc, 1274 CPDF_Document* CPDFXFA_Document::OpenPDF(CXFA_FFDoc* hDoc,
1273 IFX_FileRead* pFile, 1275 IFX_FileRead* pFile,
1274 FX_BOOL bTakeOverFile) { 1276 FX_BOOL bTakeOverFile) {
1275 return nullptr; 1277 return nullptr;
1276 } 1278 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698