summaryrefslogtreecommitdiff
path: root/fpdfsdk/fpdf_view_c_api_test.c
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2018-04-23 16:35:56 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-04-23 16:35:56 +0000
commit132c38e7bdd0bdd1aa526b35c7bcb79c286fb061 (patch)
tree20801fa3c9ce77a72d2195dcd6e2daba8298d853 /fpdfsdk/fpdf_view_c_api_test.c
parentfd016f4e9b0df99ed4670b50b30e5c6f18028f9a (diff)
downloadpdfium-132c38e7bdd0bdd1aa526b35c7bcb79c286fb061.tar.xz
Create API to get PageObject mark parameters.
New calls added in this cl: - FPDFPageObjMark_GetParamKey - FPDFPageObjMark_GetParamValueType - FPDFPageObjMark_GetParamIntValue Bug: pdfium:1037 Change-Id: Iedb74ddbf8a5483de62094ec295dadd6367d5175 Reviewed-on: https://pdfium-review.googlesource.com/30912 Reviewed-by: dsinclair <dsinclair@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdf_view_c_api_test.c')
-rw-r--r--fpdfsdk/fpdf_view_c_api_test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fpdfsdk/fpdf_view_c_api_test.c b/fpdfsdk/fpdf_view_c_api_test.c
index 017487246b..dd93095550 100644
--- a/fpdfsdk/fpdf_view_c_api_test.c
+++ b/fpdfsdk/fpdf_view_c_api_test.c
@@ -149,6 +149,9 @@ int CheckPDFiumCApi() {
CHK(FPDFPageObj_GetMark);
CHK(FPDFPageObjMark_GetName);
CHK(FPDFPageObjMark_CountParams);
+ CHK(FPDFPageObjMark_GetParamKey);
+ CHK(FPDFPageObjMark_GetParamValueType);
+ CHK(FPDFPageObjMark_GetParamIntValue);
CHK(FPDFImageObj_LoadJpegFile);
CHK(FPDFImageObj_LoadJpegFileInline);
CHK(FPDFImageObj_SetMatrix);