diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-03-15 15:25:16 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-15 15:25:16 +0000 |
commit | 35841fa4e3dbf8f9146f78def048c4a287894a8a (patch) | |
tree | 2252389ad952f6bdb0c9a55b6441f3b195e38ff3 /fpdfsdk/fpdfview_c_api_test.c | |
parent | d14dd4316d04f0982c340ad25bb283198a4d5c32 (diff) | |
download | pdfium-35841fa4e3dbf8f9146f78def048c4a287894a8a.tar.xz |
Create FPDFPage_RemoveObject().
This call removes a page object from a page. We currently offer an
API to insert these objects, but not to remove.
Bug: pdfium:1037
Change-Id: I35ff596f9e7c87a39051f0cb1de40a5bec40fee5
Reviewed-on: https://pdfium-review.googlesource.com/28492
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdfview_c_api_test.c')
-rw-r--r-- | fpdfsdk/fpdfview_c_api_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fpdfsdk/fpdfview_c_api_test.c b/fpdfsdk/fpdfview_c_api_test.c index 193050e84a..2a0b230ca5 100644 --- a/fpdfsdk/fpdfview_c_api_test.c +++ b/fpdfsdk/fpdfview_c_api_test.c @@ -129,6 +129,7 @@ int CheckPDFiumCApi() { CHK(FPDFPage_GetRotation); CHK(FPDFPage_SetRotation); CHK(FPDFPage_InsertObject); + CHK(FPDFPage_RemoveObject); CHK(FPDFPage_CountObject); CHK(FPDFPage_CountObjects); CHK(FPDFPage_GetObject); |