OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ | 7 #ifndef FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
8 #define FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ | 8 #define FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 FPDF_WIDESTRING pSubject, | 142 FPDF_WIDESTRING pSubject, |
143 FPDF_WIDESTRING pCC, | 143 FPDF_WIDESTRING pCC, |
144 FPDF_WIDESTRING pBcc, | 144 FPDF_WIDESTRING pBcc, |
145 FPDF_WIDESTRING pMsg); | 145 FPDF_WIDESTRING pMsg); |
146 void UploadTo(FPDF_FILEHANDLER* fileHandler, | 146 void UploadTo(FPDF_FILEHANDLER* fileHandler, |
147 int fileFlag, | 147 int fileFlag, |
148 FPDF_WIDESTRING uploadTo); | 148 FPDF_WIDESTRING uploadTo); |
149 FPDF_FILEHANDLER* OpenFile(int fileType, | 149 FPDF_FILEHANDLER* OpenFile(int fileType, |
150 FPDF_WIDESTRING wsURL, | 150 FPDF_WIDESTRING wsURL, |
151 const char* mode); | 151 const char* mode); |
152 IFX_SeekableReadStream* DownloadFromURL(const FX_WCHAR* url); | 152 CFX_RetainPtr<IFX_SeekableReadStream> DownloadFromURL(const FX_WCHAR* url); |
153 CFX_WideString PostRequestURL(const FX_WCHAR* wsURL, | 153 CFX_WideString PostRequestURL(const FX_WCHAR* wsURL, |
154 const FX_WCHAR* wsData, | 154 const FX_WCHAR* wsData, |
155 const FX_WCHAR* wsContentType, | 155 const FX_WCHAR* wsContentType, |
156 const FX_WCHAR* wsEncode, | 156 const FX_WCHAR* wsEncode, |
157 const FX_WCHAR* wsHeader); | 157 const FX_WCHAR* wsHeader); |
158 FPDF_BOOL PutRequestURL(const FX_WCHAR* wsURL, | 158 FPDF_BOOL PutRequestURL(const FX_WCHAR* wsURL, |
159 const FX_WCHAR* wsData, | 159 const FX_WCHAR* wsData, |
160 const FX_WCHAR* wsEncode); | 160 const FX_WCHAR* wsEncode); |
161 CFX_WideString GetLanguage(); | 161 CFX_WideString GetLanguage(); |
162 | 162 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 std::unique_ptr<CPDFSDK_InterForm> m_pInterForm; | 219 std::unique_ptr<CPDFSDK_InterForm> m_pInterForm; |
220 CPDFSDK_Annot::ObservedPtr m_pFocusAnnot; | 220 CPDFSDK_Annot::ObservedPtr m_pFocusAnnot; |
221 UnderlyingDocumentType* m_pUnderlyingDoc; | 221 UnderlyingDocumentType* m_pUnderlyingDoc; |
222 std::unique_ptr<CFFL_InteractiveFormFiller> m_pFormFiller; | 222 std::unique_ptr<CFFL_InteractiveFormFiller> m_pFormFiller; |
223 std::unique_ptr<CFX_SystemHandler> m_pSysHandler; | 223 std::unique_ptr<CFX_SystemHandler> m_pSysHandler; |
224 bool m_bChangeMask; | 224 bool m_bChangeMask; |
225 bool m_bBeingDestroyed; | 225 bool m_bBeingDestroyed; |
226 }; | 226 }; |
227 | 227 |
228 #endif // FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ | 228 #endif // FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
OLD | NEW |