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

Side by Side Diff: fpdfsdk/src/fpdfview_c_api_test.c

Issue 1368513002: Merge to XFA: Allow external font-path configuration from pdfium_test. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 2 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/fpdfview.cpp ('k') | public/fpdfview.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 2015 PDFium Authors. All rights reserved. 1 // Copyright 2015 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 // This "C" (not "C++") file ensures that the public headers compile 5 // This "C" (not "C++") file ensures that the public headers compile
6 // and link for "C" (and not just "C++"). 6 // and link for "C" (and not just "C++").
7 7
8 #include <stdio.h> 8 #include <stdio.h>
9 9
10 #include "fpdfview_c_api_test.h" 10 #include "fpdfview_c_api_test.h"
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 CHK(FPDFPage_GetMediaBox); 185 CHK(FPDFPage_GetMediaBox);
186 CHK(FPDFPage_GetCropBox); 186 CHK(FPDFPage_GetCropBox);
187 CHK(FPDFPage_TransFormWithClip); 187 CHK(FPDFPage_TransFormWithClip);
188 CHK(FPDFPageObj_TransformClipPath); 188 CHK(FPDFPageObj_TransformClipPath);
189 CHK(FPDF_CreateClipPath); 189 CHK(FPDF_CreateClipPath);
190 CHK(FPDF_DestroyClipPath); 190 CHK(FPDF_DestroyClipPath);
191 CHK(FPDFPage_InsertClipPath); 191 CHK(FPDFPage_InsertClipPath);
192 192
193 // fpdfview.h 193 // fpdfview.h
194 CHK(FPDF_InitLibrary); 194 CHK(FPDF_InitLibrary);
195 CHK(FPDF_InitLibraryWithConfig);
195 CHK(FPDF_DestroyLibrary); 196 CHK(FPDF_DestroyLibrary);
196 CHK(FPDF_SetSandBoxPolicy); 197 CHK(FPDF_SetSandBoxPolicy);
197 CHK(FPDF_LoadDocument); 198 CHK(FPDF_LoadDocument);
198 CHK(FPDF_LoadMemDocument); 199 CHK(FPDF_LoadMemDocument);
199 CHK(FPDF_LoadCustomDocument); 200 CHK(FPDF_LoadCustomDocument);
200 CHK(FPDF_GetFileVersion); 201 CHK(FPDF_GetFileVersion);
201 CHK(FPDF_GetLastError); 202 CHK(FPDF_GetLastError);
202 CHK(FPDF_GetDocPermissions); 203 CHK(FPDF_GetDocPermissions);
203 CHK(FPDF_GetSecurityHandlerRevision); 204 CHK(FPDF_GetSecurityHandlerRevision);
204 CHK(FPDF_GetPageCount); 205 CHK(FPDF_GetPageCount);
(...skipping 22 matching lines...) Expand all
227 CHK(FPDF_GetNamedDestByName); 228 CHK(FPDF_GetNamedDestByName);
228 CHK(FPDF_GetNamedDest); 229 CHK(FPDF_GetNamedDest);
229 CHK(FPDF_BStr_Init); 230 CHK(FPDF_BStr_Init);
230 CHK(FPDF_BStr_Set); 231 CHK(FPDF_BStr_Set);
231 CHK(FPDF_BStr_Clear); 232 CHK(FPDF_BStr_Clear);
232 233
233 return 1; 234 return 1;
234 } 235 }
235 236
236 #undef CHK 237 #undef CHK
OLDNEW
« no previous file with comments | « fpdfsdk/src/fpdfview.cpp ('k') | public/fpdfview.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698