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

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

Issue 1345953002: Merge to XFA: Implement FPDFAction_GetFilePath(). (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: rebase Created 5 years, 3 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/fpdfdoc_embeddertest.cpp ('k') | public/fpdf_doc.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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 // fpdf_doc.h 45 // fpdf_doc.h
46 CHK(FPDFBookmark_GetFirstChild); 46 CHK(FPDFBookmark_GetFirstChild);
47 CHK(FPDFBookmark_GetNextSibling); 47 CHK(FPDFBookmark_GetNextSibling);
48 CHK(FPDFBookmark_GetTitle); 48 CHK(FPDFBookmark_GetTitle);
49 CHK(FPDFBookmark_Find); 49 CHK(FPDFBookmark_Find);
50 CHK(FPDFBookmark_GetDest); 50 CHK(FPDFBookmark_GetDest);
51 CHK(FPDFBookmark_GetAction); 51 CHK(FPDFBookmark_GetAction);
52 CHK(FPDFAction_GetType); 52 CHK(FPDFAction_GetType);
53 CHK(FPDFAction_GetDest); 53 CHK(FPDFAction_GetDest);
54 CHK(FPDFAction_GetFilePath);
54 CHK(FPDFAction_GetURIPath); 55 CHK(FPDFAction_GetURIPath);
55 CHK(FPDFDest_GetPageIndex); 56 CHK(FPDFDest_GetPageIndex);
56 CHK(FPDFLink_GetLinkAtPoint); 57 CHK(FPDFLink_GetLinkAtPoint);
57 CHK(FPDFLink_GetLinkZOrderAtPoint); 58 CHK(FPDFLink_GetLinkZOrderAtPoint);
58 CHK(FPDFLink_GetDest); 59 CHK(FPDFLink_GetDest);
59 CHK(FPDFLink_GetAction); 60 CHK(FPDFLink_GetAction);
60 CHK(FPDFLink_Enumerate); 61 CHK(FPDFLink_Enumerate);
61 CHK(FPDFLink_GetAnnotRect); 62 CHK(FPDFLink_GetAnnotRect);
62 CHK(FPDFLink_CountQuadPoints); 63 CHK(FPDFLink_CountQuadPoints);
63 CHK(FPDFLink_GetQuadPoints); 64 CHK(FPDFLink_GetQuadPoints);
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 CHK(FPDF_GetNamedDestByName); 227 CHK(FPDF_GetNamedDestByName);
227 CHK(FPDF_GetNamedDest); 228 CHK(FPDF_GetNamedDest);
228 CHK(FPDF_BStr_Init); 229 CHK(FPDF_BStr_Init);
229 CHK(FPDF_BStr_Set); 230 CHK(FPDF_BStr_Set);
230 CHK(FPDF_BStr_Clear); 231 CHK(FPDF_BStr_Clear);
231 232
232 return 1; 233 return 1;
233 } 234 }
234 235
235 #undef CHK 236 #undef CHK
OLDNEW
« no previous file with comments | « fpdfsdk/src/fpdfdoc_embeddertest.cpp ('k') | public/fpdf_doc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698