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

Side by Side Diff: fpdfsdk/cpdfsdk_formfillenvironment.h

Issue 2451493002: Refcount all the IFX_ stream classes all the time. (Closed)
Patch Set: Clean up cast expression Created 4 years 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 | « core/fxge/ge/cfx_font.cpp ('k') | fpdfsdk/cpdfsdk_formfillenvironment.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 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
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
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_
OLDNEW
« no previous file with comments | « core/fxge/ge/cfx_font.cpp ('k') | fpdfsdk/cpdfsdk_formfillenvironment.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698