diff options
author | thestig <thestig@chromium.org> | 2016-06-24 13:23:35 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-24 13:23:35 -0700 |
commit | 88b56f4dec7df76884f87fbc7eed44898a8ddd34 (patch) | |
tree | d8102b61c0c79bba7f213954ddae3e010326cf61 /xfa/fwl/core/fwl_noteimp.h | |
parent | 29d447ae35101675a2a2d8bc1dcfca65de7f3929 (diff) | |
download | pdfium-88b56f4dec7df76884f87fbc7eed44898a8ddd34.tar.xz |
Remove IFWL_ToolTipTarget.
It does not have an implementation.
BUG=623135
Review-Url: https://codereview.chromium.org/2094013002
Diffstat (limited to 'xfa/fwl/core/fwl_noteimp.h')
-rw-r--r-- | xfa/fwl/core/fwl_noteimp.h | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/xfa/fwl/core/fwl_noteimp.h b/xfa/fwl/core/fwl_noteimp.h index eb922f916c..c92395a13a 100644 --- a/xfa/fwl/core/fwl_noteimp.h +++ b/xfa/fwl/core/fwl_noteimp.h @@ -40,7 +40,6 @@ class CFWL_MsgWindowMove; class CFWL_TargetImp; class CFWL_ToolTipImp; class CFWL_WidgetImp; -class IFWL_ToolTipTarget; class CFWL_NoteLoop { public: @@ -138,28 +137,17 @@ class CFWL_EventTarget { FX_BOOL m_bInvalid; }; -class CFWL_ToolTipContainer { +class CFWL_ToolTipContainer final { public: static CFWL_ToolTipContainer* getInstance(); static void DeleteInstance(); - FWL_Error AddToolTipTarget(IFWL_ToolTipTarget* pTarget); - FWL_Error RemoveToolTipTarget(IFWL_ToolTipTarget* pTarget); - IFWL_ToolTipTarget* GetCurrentToolTipTarget(); - - FX_BOOL HasToolTip(IFWL_Widget* pWidget); - - FX_BOOL ProcessEnter(CFWL_EvtMouse* pEvt, IFWL_Widget* pOwner); - FX_BOOL ProcessLeave(CFWL_EvtMouse* pEvt); - protected: CFWL_ToolTipContainer(); - virtual ~CFWL_ToolTipContainer(); + ~CFWL_ToolTipContainer(); - IFWL_ToolTipTarget* pCurTarget; CFWL_ToolTipImp* m_pToolTipImp; CFWL_CoreToolTipDP* m_ToolTipDp; - CFX_ArrayTemplate<IFWL_ToolTipTarget*> m_arrWidget; private: static CFWL_ToolTipContainer* s_pInstance; |