summaryrefslogtreecommitdiff
path: root/fpdfsdk/fpdf_progressive.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-09-14 19:51:10 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-09-14 19:51:10 +0000
commit59d2a590a5fc061663fec0a1543b608e8af9eec9 (patch)
tree8e262b0c37cf68a6194199c14b98203e4e292afa /fpdfsdk/fpdf_progressive.cpp
parent4dc8c50f81bd78711bcfb432629800b8683102b6 (diff)
downloadpdfium-59d2a590a5fc061663fec0a1543b608e8af9eec9.tar.xz
Rename FPDF_RenderPage_Retail() to RenderPageWithContext()chromium/3553
Removing the FPDF_ prefix also makes it more obvious that this is not a public/ entry point. No functional changes. Bug: pdfium:1149 Change-Id: I6d68d7951cbfc65128339e237017e7b4bc965635 Reviewed-on: https://pdfium-review.googlesource.com/42490 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdf_progressive.cpp')
-rw-r--r--fpdfsdk/fpdf_progressive.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/fpdf_progressive.cpp b/fpdfsdk/fpdf_progressive.cpp
index 6d16bce700..931ee17b19 100644
--- a/fpdfsdk/fpdf_progressive.cpp
+++ b/fpdfsdk/fpdf_progressive.cpp
@@ -57,8 +57,8 @@ FPDF_EXPORT int FPDF_CALLCONV FPDF_RenderPageBitmap_Start(FPDF_BITMAP bitmap,
pDevice->Attach(pBitmap, !!(flags & FPDF_REVERSE_BYTE_ORDER), nullptr, false);
IPDFSDK_PauseAdapter IPauseAdapter(pause);
- FPDF_RenderPage_Retail(pContext, page, start_x, start_y, size_x, size_y,
- rotate, flags, false, &IPauseAdapter);
+ RenderPageWithContext(pContext, page, start_x, start_y, size_x, size_y,
+ rotate, flags, false, &IPauseAdapter);
#ifdef _SKIA_SUPPORT_PATHS_
pDevice->Flush(false);