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

Side by Side Diff: fpdfsdk/src/fpdfview.cpp

Issue 1136703003: Merge to XFA: Create top-level public/ header directory. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 7 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/src/fpdftext_embeddertest.cpp ('k') | fpdfsdk/src/fpdfview_embeddertest.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_ext.h"
8 #include "../../public/fpdf_formfill.h"
9 #include "../../public/fpdf_progressive.h"
10 #include "../../public/fpdfview.h"
7 #include "../include/fsdk_define.h" 11 #include "../include/fsdk_define.h"
8 #include "../include/fsdk_mgr.h" 12 #include "../include/fsdk_mgr.h"
9 #include "../include/fpdfview.h"
10 #include "../include/fsdk_rendercontext.h" 13 #include "../include/fsdk_rendercontext.h"
11 #include "../include/fpdf_progressive.h"
12 #include "../include/fpdf_ext.h"
13 #include "../../../core/src/fxcrt/fx_safe_types.h" 14 #include "../../../core/src/fxcrt/fx_safe_types.h"
14 #include "../../third_party/base/nonstd_unique_ptr.h" 15 #include "../../third_party/base/nonstd_unique_ptr.h"
15 #include "../../third_party/base/numerics/safe_conversions_impl.h" 16 #include "../../third_party/base/numerics/safe_conversions_impl.h"
16 #include "../include/fpdfformfill.h"
17 #include "../include/fpdfxfa/fpdfxfa_doc.h" 17 #include "../include/fpdfxfa/fpdfxfa_doc.h"
18 #include "../include/fpdfxfa/fpdfxfa_app.h" 18 #include "../include/fpdfxfa/fpdfxfa_app.h"
19 #include "../include/fpdfxfa/fpdfxfa_page.h" 19 #include "../include/fpdfxfa/fpdfxfa_page.h"
20 #include "../include/fpdfxfa/fpdfxfa_util.h" 20 #include "../include/fpdfxfa/fpdfxfa_util.h"
21 21
22 CFPDF_FileStream::CFPDF_FileStream(FPDF_FILEHANDLER* pFS) 22 CFPDF_FileStream::CFPDF_FileStream(FPDF_FILEHANDLER* pFS)
23 { 23 {
24 m_pFS = pFS; 24 m_pFS = pFS;
25 m_nCurPos = 0; 25 m_nCurPos = 0;
26 } 26 }
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 if (!buffer) { 1053 if (!buffer) {
1054 buflen = len; 1054 buflen = len;
1055 } else if (buflen >= len) { 1055 } else if (buflen >= len) {
1056 memcpy(buffer, utf16Name.c_str(), len); 1056 memcpy(buffer, utf16Name.c_str(), len);
1057 buflen = len; 1057 buflen = len;
1058 } else { 1058 } else {
1059 buflen = -1; 1059 buflen = -1;
1060 } 1060 }
1061 return (FPDF_DEST)pDestObj; 1061 return (FPDF_DEST)pDestObj;
1062 } 1062 }
OLDNEW
« no previous file with comments | « fpdfsdk/src/fpdftext_embeddertest.cpp ('k') | fpdfsdk/src/fpdfview_embeddertest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698