diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-14 15:49:46 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-14 20:05:09 +0000 |
commit | 2d883813f969dcb88e240b6bd7bcd5af9e782331 (patch) | |
tree | d93ec2713e34712ed137804f1eccc252b592f347 /xfa/fwl/cfwl_edit.h | |
parent | 2d03e604b3979db45f6f2ea8c00c8d7fe0790790 (diff) | |
download | pdfium-2d883813f969dcb88e240b6bd7bcd5af9e782331.tar.xz |
Merge CFDE_RenderContext into CFWL_Edit
This CL removes CFDE_RenderContext and moves the ::Render method to be
::RenderText on the CFWL_Edit class which was the only caller.
Change-Id: Ic940a3f0d10cfce169f5e491de90803fc8a7940d
Reviewed-on: https://pdfium-review.googlesource.com/10950
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_edit.h')
-rw-r--r-- | xfa/fwl/cfwl_edit.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xfa/fwl/cfwl_edit.h b/xfa/fwl/cfwl_edit.h index 15d20bf7cb..dd165032a3 100644 --- a/xfa/fwl/cfwl_edit.h +++ b/xfa/fwl/cfwl_edit.h @@ -109,6 +109,10 @@ class CFWL_Edit : public CFWL_Widget { CFDE_TxtEdtEngine* GetTxtEdtEngine() { return &m_EdtEngine; } private: + void RenderText(CFX_RenderDevice* pRenderDev, + const CFX_RectF& clipRect, + const CFDE_TxtEdtPage& pPage, + const CFX_Matrix& mt); void DrawTextBk(CXFA_Graphics* pGraphics, IFWL_ThemeProvider* pTheme, const CFX_Matrix* pMatrix); |