Chromium Code Reviews| Index: xfa/src/fwl/src/core/include/fwl_noteimp.h |
| diff --git a/xfa/src/fwl/src/core/include/fwl_noteimp.h b/xfa/src/fwl/src/core/include/fwl_noteimp.h |
| index 413b0fd03491fb3fd828b75e742252590bb444ea..e5ad1699aa27bee4b08139756b7a22ab23b887dd 100644 |
| --- a/xfa/src/fwl/src/core/include/fwl_noteimp.h |
| +++ b/xfa/src/fwl/src/core/include/fwl_noteimp.h |
| @@ -6,23 +6,27 @@ |
| #ifndef _FWL_NOTE_IMP_H |
| #define _FWL_NOTE_IMP_H |
| + |
| +#include "xfa/include/fwl/core/fwl_note.h" |
| + |
| class CFWL_TargetImp; |
| class CFWL_WidgetImp; |
| class CFWL_NoteThread; |
| class CFWL_ToolTipImp; |
| -class IFWL_ToolTipTarget; |
| class CFWL_CoreToopTipDP; |
| -class CFWL_NoteLoop; |
| class CFWL_NoteDriver; |
| class CFWL_EventTarget; |
| class CFWL_ToolTipContainer; |
| -class CFWL_NoteLoop { |
| +class CFWL_NoteLoop : public IFWL_NoteLoop { |
|
Tom Sepez
2015/12/08 00:47:06
yow.
|
| public: |
| CFWL_NoteLoop(CFWL_WidgetImp* pForm = NULL); |
| - virtual ~CFWL_NoteLoop() {} |
| - virtual FX_BOOL PreProcessMessage(CFWL_Message* pMessage); |
| - virtual FWL_ERR Idle(int32_t count); |
| + |
| + // IFWL_NoteLoop: |
| + ~CFWL_NoteLoop() override {} |
| + FX_BOOL PreProcessMessage(CFWL_Message* pMessage) override; |
| + FWL_ERR Idle(int32_t count) override; |
| + |
| CFWL_WidgetImp* GetForm(); |
| FX_BOOL ContinueModal(); |
| FWL_ERR EndModalLoop(); |