diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-20 10:47:32 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-20 10:47:32 -0800 |
commit | 326a2a78aaf7e0146bfcd283da888c08e34143f8 (patch) | |
tree | d43911b00e90c777b8c8365513d0abc942feef6d /public/fpdf_transformpage.h | |
parent | a4754b4d4ebc5e518a1d1363648042a5c7add544 (diff) | |
download | pdfium-326a2a78aaf7e0146bfcd283da888c08e34143f8.tar.xz |
Make XFA public more closely match master.
There will be significant differences, but these are the minor
ones. I removed a comment that doesn't seem to add a lot of value.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1465723002 .
Diffstat (limited to 'public/fpdf_transformpage.h')
-rw-r--r-- | public/fpdf_transformpage.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/public/fpdf_transformpage.h b/public/fpdf_transformpage.h index 21421a18e0..569df2a7e0 100644 --- a/public/fpdf_transformpage.h +++ b/public/fpdf_transformpage.h @@ -24,8 +24,6 @@ typedef void* FPDF_PAGEARCLOADER; * @param[in] right - The right of the rectangle. * @param[in] top - The top of the rectangle. * @retval None. -* @note The method can not support to set this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, @@ -41,8 +39,6 @@ DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, * @param[in] right - The right of the rectangle. * @param[in] top - The top of the rectangle. * @retval None. -* @note The method can not support to set this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, @@ -61,8 +57,6 @@ DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, * @param[in] top - Pointer to a double value receiving the top of the * rectangle. * @retval True if success,else fail. -* @note The method can not support to get this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, @@ -81,8 +75,6 @@ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, * @param[in] top - Pointer to a double value receiving the top of the * rectangle. * @retval True if success,else fail. -* @note The method can not support to get this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, float* left, @@ -99,8 +91,6 @@ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, * @param[in] clipRect - A rectangle page area to be clipped. * @Note. This function will transform the whole page, and would take effect to * all the objects in the page. -* The method can not support to get this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, FS_MATRIX* matrix, @@ -158,8 +148,7 @@ DLLEXPORT void STDCALL FPDF_DestroyClipPath(FPDF_CLIPPATH clipPath); * @param[in] clipPath - A handle to the clip path. * @Note. A clip path will be inserted before the page content stream or content * array. In this way, the page content will be clipped -* by this clip path. The method can not support this feature for the document -* consists of dynamic XFA fields. +* by this clip path. */ DLLEXPORT void STDCALL FPDFPage_InsertClipPath(FPDF_PAGE page, FPDF_CLIPPATH clipPath); |