diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-03-01 11:34:03 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-03-01 11:34:03 -0800 |
commit | 50dfc4a7068e8e08105f7b9a3945136e7246e677 (patch) | |
tree | a292ef9ae17bfabcb20c94505320dc6c5f6e6258 /xfa/src/fee/include/ifde_txtedtpage.h | |
parent | 23835e3eadc276e4235cbb0a56c8e19ebf7a58f9 (diff) | |
download | pdfium-50dfc4a7068e8e08105f7b9a3945136e7246e677.tar.xz |
Replace FX_LPCRECT typedef with underlying types
Helps with transparency. Also remove default args and
use override consistently in the affected methods.
R=dsinclair@chromium.org
Review URL: https://codereview.chromium.org/1751093002 .
Diffstat (limited to 'xfa/src/fee/include/ifde_txtedtpage.h')
-rw-r--r-- | xfa/src/fee/include/ifde_txtedtpage.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/xfa/src/fee/include/ifde_txtedtpage.h b/xfa/src/fee/include/ifde_txtedtpage.h index c16e94febf..884b752d82 100644 --- a/xfa/src/fee/include/ifde_txtedtpage.h +++ b/xfa/src/fee/include/ifde_txtedtpage.h @@ -32,11 +32,10 @@ class IFDE_TxtEdtPage : public IFDE_CanvasSet, public IFX_TxtAccess { virtual int32_t GetDisplayPos(const CFX_RectF& rtClip, FXTEXT_CHARPOS*& pCharPos, - FX_LPRECTF pBBox = NULL) const = 0; - virtual FX_BOOL IsLoaded(FX_LPCRECTF pClipBox = NULL) = 0; - virtual int32_t LoadPage(FX_LPCRECTF pClipBox = NULL, - IFX_Pause* pPause = NULL) = 0; - virtual void UnloadPage(FX_LPCRECTF pClipBox = NULL) = 0; + CFX_RectF* pBBox) const = 0; + virtual FX_BOOL IsLoaded(const CFX_RectF* pClipBox) = 0; + virtual int32_t LoadPage(const CFX_RectF* pClipBox, IFX_Pause* pPause) = 0; + virtual void UnloadPage(const CFX_RectF* pClipBox) = 0; virtual const CFX_RectF& GetContentsBox() = 0; }; |