diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/embedder_test.cpp | 7 | ||||
-rw-r--r-- | testing/embedder_test.h | 8 |
2 files changed, 0 insertions, 15 deletions
diff --git a/testing/embedder_test.cpp b/testing/embedder_test.cpp index 549ebe1f80..b4f3851e3e 100644 --- a/testing/embedder_test.cpp +++ b/testing/embedder_test.cpp @@ -312,13 +312,6 @@ std::unique_ptr<void, FPDFBitmapDeleter> EmbedderTest::RenderSavedPageWithFlags( } // static -FPDF_BITMAP EmbedderTest::RenderPageWithFlagsDeprecated(FPDF_PAGE page, - FPDF_FORMHANDLE handle, - int flags) { - return RenderPageWithFlags(page, handle, flags).release(); -} - -// static std::unique_ptr<void, FPDFBitmapDeleter> EmbedderTest::RenderPageWithFlags( FPDF_PAGE page, FPDF_FORMHANDLE handle, diff --git a/testing/embedder_test.h b/testing/embedder_test.h index dc91df8bf3..c1f1844eba 100644 --- a/testing/embedder_test.h +++ b/testing/embedder_test.h @@ -141,14 +141,6 @@ class EmbedderTest : public ::testing::Test, FPDF_PAGE page, int flags); - // DEPRECATED. Use RenderPageWithFlags() instead. - // Caller takes ownership of the returned bitmap. - // - // See public/fpdfview.h for a list of page rendering flags. - static FPDF_BITMAP RenderPageWithFlagsDeprecated(FPDF_PAGE page, - FPDF_FORMHANDLE handle, - int flags); - // Convert |page| into a bitmap with the specified page rendering |flags|. // The form handle associated with |page| should be passed in via |handle|. // If |handle| is nullptr, then forms on the page will not be rendered. |