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

Side by Side Diff: fpdfsdk/fpdfformfill.cpp

Issue 2385423004: Rename fpdfsdk/fpdfxfa files to match contents (Closed)
Patch Set: Created 4 years, 2 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/fpdfeditpage.cpp ('k') | fpdfsdk/fpdfsave.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 "public/fpdf_formfill.h" 7 #include "public/fpdf_formfill.h"
8 8
9 #include <memory> 9 #include <memory>
10 #include <vector> 10 #include <vector>
(...skipping 10 matching lines...) Expand all
21 #include "fpdfsdk/cpdfsdk_environment.h" 21 #include "fpdfsdk/cpdfsdk_environment.h"
22 #include "fpdfsdk/cpdfsdk_interform.h" 22 #include "fpdfsdk/cpdfsdk_interform.h"
23 #include "fpdfsdk/cpdfsdk_pageview.h" 23 #include "fpdfsdk/cpdfsdk_pageview.h"
24 #include "fpdfsdk/fsdk_actionhandler.h" 24 #include "fpdfsdk/fsdk_actionhandler.h"
25 #include "fpdfsdk/fsdk_define.h" 25 #include "fpdfsdk/fsdk_define.h"
26 #include "public/fpdfview.h" 26 #include "public/fpdfview.h"
27 #include "third_party/base/ptr_util.h" 27 #include "third_party/base/ptr_util.h"
28 #include "third_party/base/stl_util.h" 28 #include "third_party/base/stl_util.h"
29 29
30 #ifdef PDF_ENABLE_XFA 30 #ifdef PDF_ENABLE_XFA
31 #include "fpdfsdk/fpdfxfa/fpdfxfa_app.h" 31 #include "fpdfsdk/fpdfxfa/cpdfxfa_app.h"
32 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" 32 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h"
33 #include "fpdfsdk/fpdfxfa/fpdfxfa_page.h" 33 #include "fpdfsdk/fpdfxfa/cpdfxfa_page.h"
34 #include "xfa/fxfa/xfa_ffdocview.h" 34 #include "xfa/fxfa/xfa_ffdocview.h"
35 #include "xfa/fxfa/xfa_ffpageview.h" 35 #include "xfa/fxfa/xfa_ffpageview.h"
36 #include "xfa/fxfa/xfa_ffwidget.h" 36 #include "xfa/fxfa/xfa_ffwidget.h"
37 #endif // PDF_ENABLE_XFA 37 #endif // PDF_ENABLE_XFA
38 38
39 namespace { 39 namespace {
40 40
41 CPDFSDK_Environment* HandleToCPDFSDKEnvironment(FPDF_FORMHANDLE handle) { 41 CPDFSDK_Environment* HandleToCPDFSDKEnvironment(FPDF_FORMHANDLE handle) {
42 return static_cast<CPDFSDK_Environment*>(handle); 42 return static_cast<CPDFSDK_Environment*>(handle);
43 } 43 }
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 CPDF_Action action = aa.GetAction(CPDF_AAction::OpenPage); 733 CPDF_Action action = aa.GetAction(CPDF_AAction::OpenPage);
734 pActionHandler->DoAction_Page(action, CPDF_AAction::OpenPage, pSDKDoc); 734 pActionHandler->DoAction_Page(action, CPDF_AAction::OpenPage, pSDKDoc);
735 } 735 }
736 } else { 736 } else {
737 if (aa.ActionExist(CPDF_AAction::ClosePage)) { 737 if (aa.ActionExist(CPDF_AAction::ClosePage)) {
738 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage); 738 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage);
739 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, pSDKDoc); 739 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, pSDKDoc);
740 } 740 }
741 } 741 }
742 } 742 }
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfeditpage.cpp ('k') | fpdfsdk/fpdfsave.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698