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

Side by Side Diff: fpdfsdk/fpdfformfill.cpp

Issue 2386273004: Add ptr_util.h from base until std::make_unique<> available (Closed)
Patch Set: 2016 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/fpdfeditimg.cpp ('k') | fpdfsdk/fpdfview.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>
11 11
12 #include "core/fpdfapi/fpdf_page/cpdf_page.h" 12 #include "core/fpdfapi/fpdf_page/cpdf_page.h"
13 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" 13 #include "core/fpdfapi/fpdf_parser/cpdf_document.h"
14 #include "core/fpdfapi/fpdf_render/cpdf_renderoptions.h" 14 #include "core/fpdfapi/fpdf_render/cpdf_renderoptions.h"
15 #include "core/fpdfdoc/cpdf_formcontrol.h" 15 #include "core/fpdfdoc/cpdf_formcontrol.h"
16 #include "core/fpdfdoc/cpdf_formfield.h" 16 #include "core/fpdfdoc/cpdf_formfield.h"
17 #include "core/fpdfdoc/cpdf_interform.h" 17 #include "core/fpdfdoc/cpdf_interform.h"
18 #include "core/fpdfdoc/cpdf_occontext.h" 18 #include "core/fpdfdoc/cpdf_occontext.h"
19 #include "core/fxge/cfx_fxgedevice.h" 19 #include "core/fxge/cfx_fxgedevice.h"
20 #include "fpdfsdk/cpdfsdk_document.h" 20 #include "fpdfsdk/cpdfsdk_document.h"
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/stl_util.h" 28 #include "third_party/base/stl_util.h"
28 29
29 #ifdef PDF_ENABLE_XFA 30 #ifdef PDF_ENABLE_XFA
30 #include "fpdfsdk/fpdfxfa/fpdfxfa_app.h" 31 #include "fpdfsdk/fpdfxfa/fpdfxfa_app.h"
31 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" 32 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h"
32 #include "fpdfsdk/fpdfxfa/fpdfxfa_page.h" 33 #include "fpdfsdk/fpdfxfa/fpdfxfa_page.h"
33 #include "xfa/fxfa/xfa_ffdocview.h" 34 #include "xfa/fxfa/xfa_ffdocview.h"
34 #include "xfa/fxfa/xfa_ffpageview.h" 35 #include "xfa/fxfa/xfa_ffpageview.h"
35 #include "xfa/fxfa/xfa_ffwidget.h" 36 #include "xfa/fxfa/xfa_ffwidget.h"
36 #endif // PDF_ENABLE_XFA 37 #endif // PDF_ENABLE_XFA
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 // and can just return the old Env. Otherwise, we'll end up setting a new 248 // and can just return the old Env. Otherwise, we'll end up setting a new
248 // SDKDocument into the XFADocument and, that could get weird. 249 // SDKDocument into the XFADocument and, that could get weird.
249 if (pDocument->GetSDKDoc()) 250 if (pDocument->GetSDKDoc())
250 return pDocument->GetSDKDoc()->GetEnv(); 251 return pDocument->GetSDKDoc()->GetEnv();
251 #endif 252 #endif
252 253
253 CPDFSDK_Environment* pEnv = new CPDFSDK_Environment(pDocument, formInfo); 254 CPDFSDK_Environment* pEnv = new CPDFSDK_Environment(pDocument, formInfo);
254 255
255 #ifdef PDF_ENABLE_XFA 256 #ifdef PDF_ENABLE_XFA
256 // Ownership of the SDKDocument is passed to the CPDFXFA_Document. 257 // Ownership of the SDKDocument is passed to the CPDFXFA_Document.
257 pDocument->SetSDKDoc(WrapUnique(pEnv->GetSDKDocument())); 258 pDocument->SetSDKDoc(pdfium::WrapUnique(pEnv->GetSDKDocument()));
258 CPDFXFA_App::GetInstance()->AddFormFillEnv(pEnv); 259 CPDFXFA_App::GetInstance()->AddFormFillEnv(pEnv);
259 #endif // PDF_ENABLE_XFA 260 #endif // PDF_ENABLE_XFA
260 261
261 return pEnv; 262 return pEnv;
262 } 263 }
263 264
264 DLLEXPORT void STDCALL 265 DLLEXPORT void STDCALL
265 FPDFDOC_ExitFormFillEnvironment(FPDF_FORMHANDLE hHandle) { 266 FPDFDOC_ExitFormFillEnvironment(FPDF_FORMHANDLE hHandle) {
266 if (!hHandle) 267 if (!hHandle)
267 return; 268 return;
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 CPDF_Action action = aa.GetAction(CPDF_AAction::OpenPage); 733 CPDF_Action action = aa.GetAction(CPDF_AAction::OpenPage);
733 pActionHandler->DoAction_Page(action, CPDF_AAction::OpenPage, pSDKDoc); 734 pActionHandler->DoAction_Page(action, CPDF_AAction::OpenPage, pSDKDoc);
734 } 735 }
735 } else { 736 } else {
736 if (aa.ActionExist(CPDF_AAction::ClosePage)) { 737 if (aa.ActionExist(CPDF_AAction::ClosePage)) {
737 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage); 738 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage);
738 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, pSDKDoc); 739 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, pSDKDoc);
739 } 740 }
740 } 741 }
741 } 742 }
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfeditimg.cpp ('k') | fpdfsdk/fpdfview.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698