Chromium Code Reviews| Index: xfa/src/fee/include/ifde_txtedtpage.h |
| diff --git a/xfa/src/fee/include/ifde_txtedtpage.h b/xfa/src/fee/include/ifde_txtedtpage.h |
| index c16e94febf96b61f972891f76979ed99ec7e0399..1f560c0346a896015c5e746414180ec4e6a8e2f6 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 = NULL) const = 0; |
|
dsinclair
2016/03/01 18:57:52
Can this default value be removed too?
|
| + 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; |
| }; |