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

Side by Side Diff: fpdfsdk/include/fsdk_mgr.h

Issue 1701883004: Banish CFX_ByteStringArray and CFX_WideStringArray to the XFA side. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Nits Created 4 years, 10 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/include/fpdfxfa/fpdfxfa_doc.h ('k') | fpdfsdk/include/pdfwindow/PWL_Wnd.h » ('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 #ifndef FPDFSDK_INCLUDE_FSDK_MGR_H_ 7 #ifndef FPDFSDK_INCLUDE_FSDK_MGR_H_
8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_ 8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_
9 9
10 #include <map> 10 #include <map>
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 FPDF_WIDESTRING encode = 371 FPDF_WIDESTRING encode =
372 (FPDF_WIDESTRING)bsEncode.GetBuffer(bsEncode.GetLength()); 372 (FPDF_WIDESTRING)bsEncode.GetBuffer(bsEncode.GetLength());
373 373
374 return m_pInfo->FFI_PutRequestURL(m_pInfo, URL, data, encode); 374 return m_pInfo->FFI_PutRequestURL(m_pInfo, URL, data, encode);
375 } 375 }
376 return FALSE; 376 return FALSE;
377 } 377 }
378 378
379 FPDF_BOOL FFI_ShowFileDialog(const FX_WCHAR* wsTitle, 379 FPDF_BOOL FFI_ShowFileDialog(const FX_WCHAR* wsTitle,
380 const FX_WCHAR* wsFilter, 380 const FX_WCHAR* wsFilter,
381 CFX_WideStringArray& wsPathArr, 381 std::vector<CFX_WideString>& wsPathArr,
382 FX_BOOL bOpen) { 382 FX_BOOL bOpen) {
383 return FALSE; 383 return FALSE;
384 } 384 }
385 385
386 CFX_WideString FFI_GetLanguage() { 386 CFX_WideString FFI_GetLanguage() {
387 if (m_pInfo && m_pInfo->FFI_GetLanguage) { 387 if (m_pInfo && m_pInfo->FFI_GetLanguage) {
388 int nRequiredLen = m_pInfo->FFI_GetLanguage(m_pInfo, NULL, 0); 388 int nRequiredLen = m_pInfo->FFI_GetLanguage(m_pInfo, NULL, 0);
389 if (nRequiredLen <= 0) 389 if (nRequiredLen <= 0)
390 return L""; 390 return L"";
391 391
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 FX_BOOL m_bTakeOverPage; 654 FX_BOOL m_bTakeOverPage;
655 #endif // PDF_ENABLE_XFA 655 #endif // PDF_ENABLE_XFA
656 FX_BOOL m_bEnterWidget; 656 FX_BOOL m_bEnterWidget;
657 FX_BOOL m_bExitWidget; 657 FX_BOOL m_bExitWidget;
658 FX_BOOL m_bOnWidget; 658 FX_BOOL m_bOnWidget;
659 FX_BOOL m_bValid; 659 FX_BOOL m_bValid;
660 FX_BOOL m_bLocked; 660 FX_BOOL m_bLocked;
661 }; 661 };
662 662
663 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ 663 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_
OLDNEW
« no previous file with comments | « fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h ('k') | fpdfsdk/include/pdfwindow/PWL_Wnd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698