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

Side by Side Diff: fpdfsdk/fpdf_dataavail.cpp

Issue 1805603002: core/include/fdpfapi cleanup Part I. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 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/formfiller/FFL_IFormFiller.cpp ('k') | fpdfsdk/fpdf_ext.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_dataavail.h" 7 #include "public/fpdf_dataavail.h"
8 8
9 #include "core/include/fpdfapi/cpdf_document.h" 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
10 #include "core/include/fpdfapi/ipdf_data_avail.h" 10 #include "core/fpdfapi/fpdf_parser/include/ipdf_data_avail.h"
11 #include "fpdfsdk/include/fsdk_define.h" 11 #include "fpdfsdk/include/fsdk_define.h"
12 #include "public/fpdf_formfill.h" 12 #include "public/fpdf_formfill.h"
13 13
14 // These checks are here because core/ and public/ cannot depend on each other. 14 // These checks are here because core/ and public/ cannot depend on each other.
15 static_assert(IPDF_DataAvail::DataError == PDF_DATA_ERROR, 15 static_assert(IPDF_DataAvail::DataError == PDF_DATA_ERROR,
16 "IPDF_DataAvail::DataError value mismatch"); 16 "IPDF_DataAvail::DataError value mismatch");
17 static_assert(IPDF_DataAvail::DataNotAvailable == PDF_DATA_NOTAVAIL, 17 static_assert(IPDF_DataAvail::DataNotAvailable == PDF_DATA_NOTAVAIL,
18 "IPDF_DataAvail::DataNotAvailable value mismatch"); 18 "IPDF_DataAvail::DataNotAvailable value mismatch");
19 static_assert(IPDF_DataAvail::DataAvailable == PDF_DATA_AVAIL, 19 static_assert(IPDF_DataAvail::DataAvailable == PDF_DATA_AVAIL,
20 "IPDF_DataAvail::DataAvailable value mismatch"); 20 "IPDF_DataAvail::DataAvailable value mismatch");
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 return PDF_FORM_ERROR; 163 return PDF_FORM_ERROR;
164 CFPDF_DownloadHintsWrap hints_wrap(hints); 164 CFPDF_DownloadHintsWrap hints_wrap(hints);
165 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsFormAvail(&hints_wrap); 165 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsFormAvail(&hints_wrap);
166 } 166 }
167 167
168 DLLEXPORT int STDCALL FPDFAvail_IsLinearized(FPDF_AVAIL avail) { 168 DLLEXPORT int STDCALL FPDFAvail_IsLinearized(FPDF_AVAIL avail) {
169 if (!avail) 169 if (!avail)
170 return PDF_LINEARIZATION_UNKNOWN; 170 return PDF_LINEARIZATION_UNKNOWN;
171 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsLinearizedPDF(); 171 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsLinearizedPDF();
172 } 172 }
OLDNEW
« no previous file with comments | « fpdfsdk/formfiller/FFL_IFormFiller.cpp ('k') | fpdfsdk/fpdf_ext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698