summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-08-09 17:23:36 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-08-10 13:14:22 +0000
commit4454ce7c74558f610962c6d41d446f50875603ad (patch)
tree159619b088fa6cc65ba902bc8c26be3f092f666e
parent821e59c5d2034066843dd6040a06fe637a6369df (diff)
downloadpdfium-4454ce7c74558f610962c6d41d446f50875603ad.tar.xz
Remove default params in CFDE_RenderDevice
This CL removes the two default nullptr values in CFDE_RenderDevice. Change-Id: I32e7cf5f45fcf1fbddd0c9070024647ac06203c5 Reviewed-on: https://pdfium-review.googlesource.com/10453 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
-rw-r--r--xfa/fde/cfde_renderdevice.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fde/cfde_renderdevice.h b/xfa/fde/cfde_renderdevice.h
index 0f0ce9e1cd..f1082fb39a 100644
--- a/xfa/fde/cfde_renderdevice.h
+++ b/xfa/fde/cfde_renderdevice.h
@@ -34,11 +34,11 @@ class CFDE_RenderDevice {
const FXTEXT_CHARPOS* pCharPos,
int32_t iCount,
float fFontSize,
- const CFX_Matrix* pMatrix = nullptr);
+ const CFX_Matrix* pMatrix);
bool DrawPath(FX_ARGB color,
float fPenWidth,
const CFDE_Path* pPath,
- const CFX_Matrix* pMatrix = nullptr);
+ const CFX_Matrix* pMatrix);
private:
CFX_RenderDevice* const m_pDevice;