diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-19 16:20:03 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-19 16:20:03 -0700 |
commit | b3b67620b9db518558f2912357581b600645ce68 (patch) | |
tree | a54ffe1f3d15d492278fc53d7bd52e52af3a708b /fpdfsdk/src/fpdfview.cpp | |
parent | d831dc7147e9895185740f551fed7abe246e2adf (diff) | |
download | pdfium-b3b67620b9db518558f2912357581b600645ce68.tar.xz |
Merge to XFA: Refactor progressive renderer.
Hand-application of diffs from https://codereview.chromium.org/1233453014/.
This was an oversight, and was too old (pre-reformat) to apply cleanly.
Checked against origin/master, only diffs are xfa related.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1416793002 .
Diffstat (limited to 'fpdfsdk/src/fpdfview.cpp')
-rw-r--r-- | fpdfsdk/src/fpdfview.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/fpdfsdk/src/fpdfview.cpp b/fpdfsdk/src/fpdfview.cpp index 8e794e1fd6..48c8de433f 100644 --- a/fpdfsdk/src/fpdfview.cpp +++ b/fpdfsdk/src/fpdfview.cpp @@ -856,14 +856,12 @@ void FPDF_RenderPage_Retail(CRenderContext* pContext, &matrix, TRUE, NULL); } - pContext->m_pRenderer = new CPDF_ProgressiveRenderer; - pContext->m_pRenderer->Start(pContext->m_pContext, pContext->m_pDevice, - pContext->m_pOptions, pause); + pContext->m_pRenderer = new CPDF_ProgressiveRenderer( + pContext->m_pContext, pContext->m_pDevice, pContext->m_pOptions); + pContext->m_pRenderer->Start(pause); if (bNeedToRestore) { pContext->m_pDevice->RestoreState(); } - - //#endif } DLLEXPORT int STDCALL FPDF_GetPageSizeByIndex(FPDF_DOCUMENT document, |