diff options
author | dsinclair <dsinclair@chromium.org> | 2016-07-13 11:26:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-13 11:26:20 -0700 |
commit | e35af1e3c93e5e1f374799da115eb4b99820831c (patch) | |
tree | 1adebcd0961e7e331ff6d4172401296676967970 /fpdfsdk/pdfwindow/PWL_Utils.h | |
parent | a2919b31197737d35e4e1df53b02f7ee7cb4cf5e (diff) | |
download | pdfium-e35af1e3c93e5e1f374799da115eb4b99820831c.tar.xz |
Remove some IFX_* wrappers.
This CL removes the IFX_* wrappers between fpdfsdk/fxedit and fpdfsdk/pdfwindow
which only have a single implementation.
Review-Url: https://codereview.chromium.org/2142213002
Diffstat (limited to 'fpdfsdk/pdfwindow/PWL_Utils.h')
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_Utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpdfsdk/pdfwindow/PWL_Utils.h b/fpdfsdk/pdfwindow/PWL_Utils.h index db79cf77e2..c3acc59918 100644 --- a/fpdfsdk/pdfwindow/PWL_Utils.h +++ b/fpdfsdk/pdfwindow/PWL_Utils.h @@ -10,8 +10,8 @@ #include "core/fpdfdoc/include/cpvt_wordrange.h" #include "fpdfsdk/pdfwindow/PWL_Wnd.h" +class CFX_Edit; class CFX_PathData; -class IFX_Edit; struct CPWL_Color; @@ -166,13 +166,13 @@ class CPWL_Utils { int32_t nStyle, const CPWL_Color& crText); - static CFX_ByteString GetEditAppStream(IFX_Edit* pEdit, + static CFX_ByteString GetEditAppStream(CFX_Edit* pEdit, const CFX_FloatPoint& ptOffset, const CPVT_WordRange* pRange = nullptr, FX_BOOL bContinuous = TRUE, uint16_t SubWord = 0); static CFX_ByteString GetEditSelAppStream( - IFX_Edit* pEdit, + CFX_Edit* pEdit, const CFX_FloatPoint& ptOffset, const CPVT_WordRange* pRange = nullptr); static CFX_ByteString GetTextAppStream(const CFX_FloatRect& rcBBox, |