From 568aff520b4ca33d851317a4ea88807b4fd2da40 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 19 Jun 2015 14:58:28 -0700 Subject: Fix -Wnon-virtual-dtor warnings on the XFA branch. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1183483003. --- xfa/include/fwl/adapter/fwl_adapterclipboardmgr.h | 5 +++-- xfa/include/fwl/adapter/fwl_adaptercursormgr.h | 2 ++ xfa/include/fwl/adapter/fwl_adaptermonitormgr.h | 4 +++- xfa/include/fwl/adapter/fwl_adapternative.h | 3 ++- xfa/include/fwl/adapter/fwl_adapterthreadmgr.h | 4 +++- xfa/include/fwl/adapter/fwl_adaptertimermgr.h | 4 +++- xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h | 3 ++- xfa/include/fwl/basewidget/fwl_listbox.h | 1 + xfa/include/fwl/basewidget/fxmath_barcode.h | 1 + xfa/include/fwl/core/fwl_form.h | 1 + xfa/include/fwl/core/fwl_note.h | 3 +++ xfa/include/fwl/core/fwl_theme.h | 1 + xfa/include/fwl/core/fwl_timer.h | 1 + xfa/include/fwl/core/fwl_widget.h | 4 ++++ xfa/include/fwl/core/fwl_widgetmgr.h | 2 ++ 15 files changed, 32 insertions(+), 7 deletions(-) (limited to 'xfa/include/fwl') diff --git a/xfa/include/fwl/adapter/fwl_adapterclipboardmgr.h b/xfa/include/fwl/adapter/fwl_adapterclipboardmgr.h index 943d7caa12..55250f30de 100644 --- a/xfa/include/fwl/adapter/fwl_adapterclipboardmgr.h +++ b/xfa/include/fwl/adapter/fwl_adapterclipboardmgr.h @@ -6,8 +6,7 @@ #ifndef _FWL_ADAPTER_CLIPBOARDMGR_H #define _FWL_ADAPTER_CLIPBOARDMGR_H -class IFWL_Widget; -class IFWL_AdapterClipboardMgr; + enum FWL_CLIPBOARDFORMAT { FWL_CLIPBOARDFORMAT_Dib, FWL_CLIPBOARDFORMAT_Text, @@ -16,9 +15,11 @@ enum FWL_CLIPBOARDFORMAT { typedef struct _FWL_HCLIPBOARDDATA { void* pData; } * FWL_HCLIPBOARDDATA; + class IFWL_AdapterClipboardMgr { public: + virtual ~IFWL_AdapterClipboardMgr() {} virtual FWL_ERR Empty() = 0; virtual FX_BOOL IsDataAvailable(FX_DWORD dwFormat) = 0; virtual FWL_HCLIPBOARDDATA GetData(FX_DWORD dwFormat) = 0; diff --git a/xfa/include/fwl/adapter/fwl_adaptercursormgr.h b/xfa/include/fwl/adapter/fwl_adaptercursormgr.h index 7b7b567be1..b03be66cca 100644 --- a/xfa/include/fwl/adapter/fwl_adaptercursormgr.h +++ b/xfa/include/fwl/adapter/fwl_adaptercursormgr.h @@ -25,9 +25,11 @@ enum FWL_CURSORTYPE { typedef struct _FWL_HCURSOR { void* pData; } *FWL_HCURSOR; + class IFWL_AdapterCursorMgr { public: + virtual ~IFWL_AdapterCursorMgr() {} virtual FWL_HCURSOR GetSystemCursor(FWL_CURSORTYPE eCursorType) = 0; virtual FWL_HCURSOR GetCustomCursor(const CFX_DIBitmap *pBitmap, FX_FLOAT xHotspot = 0, FX_FLOAT yHotspot = 0) = 0; virtual FWL_ERR SetCursor(FWL_HCURSOR hCursor) = 0; diff --git a/xfa/include/fwl/adapter/fwl_adaptermonitormgr.h b/xfa/include/fwl/adapter/fwl_adaptermonitormgr.h index 3da0564225..77822543d0 100644 --- a/xfa/include/fwl/adapter/fwl_adaptermonitormgr.h +++ b/xfa/include/fwl/adapter/fwl_adaptermonitormgr.h @@ -6,13 +6,15 @@ #ifndef _FWL_ADAPTER_MONITORMGR_H #define _FWL_ADAPTER_MONITORMGR_H -class IFWL_AdapterMonitorMgr; + typedef struct _FWL_HMONITOR { void* pData; } *FWL_HMONITOR; + class IFWL_AdapterMonitorMgr { public: + virtual ~IFWL_AdapterMonitorMgr() {} virtual int32_t CountMonitors() = 0; virtual FWL_HMONITOR GetMonitor(int32_t nIndex) = 0; virtual FWL_HMONITOR GetCurrentMonitor() = 0; diff --git a/xfa/include/fwl/adapter/fwl_adapternative.h b/xfa/include/fwl/adapter/fwl_adapternative.h index 55532945f9..cc348bf833 100644 --- a/xfa/include/fwl/adapter/fwl_adapternative.h +++ b/xfa/include/fwl/adapter/fwl_adapternative.h @@ -13,10 +13,11 @@ class IFWL_AdapterTimerMgr; class IFWL_AdapterCursorMgr; class IFWL_AdapterMonitorMgr; class IFWL_AdapterClipboardMgr; -class IFWL_AdapterNative; + class IFWL_AdapterNative { public: + virtual ~IFWL_AdapterNative() {} virtual IFWL_AdapterWidgetMgr* GetWidgetMgr(IFWL_WidgetMgrDelegate *pDelegate) = 0; virtual IFWL_AdapterThreadMgr* GetThreadMgr() = 0; virtual IFWL_AdapterTimerMgr* GetTimerMgr() = 0; diff --git a/xfa/include/fwl/adapter/fwl_adapterthreadmgr.h b/xfa/include/fwl/adapter/fwl_adapterthreadmgr.h index f3e01855b0..ba2febfdb4 100644 --- a/xfa/include/fwl/adapter/fwl_adapterthreadmgr.h +++ b/xfa/include/fwl/adapter/fwl_adapterthreadmgr.h @@ -7,12 +7,13 @@ #ifndef _FWL_ADAPTER_THREAD_H #define _FWL_ADAPTER_THREAD_H class IFWL_Thread; -class IFWL_AdapterThreadMgr; class IFWL_AdapterMutex; class IFWL_AdapterSemaphore; + class IFWL_AdapterThreadMgr { public: + virtual ~IFWL_AdapterThreadMgr() {} virtual FWL_ERR Start(IFWL_Thread *pThread, FWL_HTHREAD &hThread, FX_BOOL bSuspended = FALSE) = 0; virtual FWL_ERR Resume(FWL_HTHREAD hThread) = 0; virtual FWL_ERR Suspend(FWL_HTHREAD hThread) = 0; @@ -23,6 +24,7 @@ public: class IFWL_AdapterSemaphore { public: + virtual ~IFWL_AdapterSemaphore() {} static IFWL_AdapterSemaphore * Create(); virtual FWL_ERR Destroy() = 0; virtual FWL_ERR Wait() const = 0; diff --git a/xfa/include/fwl/adapter/fwl_adaptertimermgr.h b/xfa/include/fwl/adapter/fwl_adaptertimermgr.h index 4c7f7e76dc..f3dce811fa 100644 --- a/xfa/include/fwl/adapter/fwl_adaptertimermgr.h +++ b/xfa/include/fwl/adapter/fwl_adaptertimermgr.h @@ -6,11 +6,13 @@ #ifndef _FWL_ADAPTER_TIMERMGR_H #define _FWL_ADAPTER_TIMERMGR_H + class IFWL_Timer; -class IFWL_AdapterTimerMgr; + class IFWL_AdapterTimerMgr { public: + virtual ~IFWL_AdapterTimerMgr() {} virtual FWL_ERR Start(IFWL_Timer *pTimer, FX_DWORD dwElapse, FWL_HTIMER &hTimer, FX_BOOL bImmediately = TRUE) = 0; virtual FWL_ERR Stop(FWL_HTIMER hTimer) = 0; }; diff --git a/xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h b/xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h index 603e931084..29e91bab8c 100644 --- a/xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h +++ b/xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h @@ -11,12 +11,13 @@ class IFWL_Menu; class IFWL_MenuDP; class CFX_Path; class CFX_DIBitmap; -class IFWL_AdapterWidgetMgr; class IFWL_AdapterMessageHook; class IFWL_AppDelegate; + class IFWL_AdapterWidgetMgr { public: + virtual ~IFWL_AdapterWidgetMgr() {} virtual FWL_ERR CreateWidget(IFWL_Widget *pWidget, IFWL_Widget *pParent = NULL) = 0; virtual FWL_ERR DestroyWidget(IFWL_Widget *pWidget) = 0; virtual FWL_ERR GetWidgetRect(IFWL_Widget *pWidget, CFX_RectF &rect) = 0; diff --git a/xfa/include/fwl/basewidget/fwl_listbox.h b/xfa/include/fwl/basewidget/fwl_listbox.h index 3d0fa116ce..4ab4e46c10 100644 --- a/xfa/include/fwl/basewidget/fwl_listbox.h +++ b/xfa/include/fwl/basewidget/fwl_listbox.h @@ -88,6 +88,7 @@ public: class IFWL_ListBoxCompare { public: + virtual ~IFWL_ListBoxCompare() {} virtual int32_t Compare(FWL_HLISTITEM hLeft, FWL_HLISTITEM hRight) = 0; }; class IFWL_ListBox : public IFWL_Widget diff --git a/xfa/include/fwl/basewidget/fxmath_barcode.h b/xfa/include/fwl/basewidget/fxmath_barcode.h index 15babc8253..5e78940958 100644 --- a/xfa/include/fwl/basewidget/fxmath_barcode.h +++ b/xfa/include/fwl/basewidget/fxmath_barcode.h @@ -9,6 +9,7 @@ class IFX_Barcode { public: + virtual ~IFX_Barcode() {} virtual void Release() = 0; virtual BC_TYPE GetType() = 0; virtual FX_BOOL Encode(const CFX_WideStringC& contents, FX_BOOL isDevice, int32_t &e) = 0; diff --git a/xfa/include/fwl/core/fwl_form.h b/xfa/include/fwl/core/fwl_form.h index eb0b083008..e9a8323f20 100644 --- a/xfa/include/fwl/core/fwl_form.h +++ b/xfa/include/fwl/core/fwl_form.h @@ -42,6 +42,7 @@ class IFWL_Form; #define FWL_PARTSTATE_FRM_Pressed 3 #define FWL_PARTSTATE_FRM_Inactive 4 #define FWL_PARTSTATE_FRM_Disabled 5 + class IFWL_FormDP : public IFWL_DataProvider { public: diff --git a/xfa/include/fwl/core/fwl_note.h b/xfa/include/fwl/core/fwl_note.h index ea8328fffb..c423cd5a24 100644 --- a/xfa/include/fwl/core/fwl_note.h +++ b/xfa/include/fwl/core/fwl_note.h @@ -346,6 +346,7 @@ typedef enum { class IFWL_NoteDriver { public: + virtual ~IFWL_NoteDriver() {} virtual FX_BOOL SendNote(CFWL_Note *pNote) = 0; virtual FX_BOOL PostMessage(CFWL_Message *pMessage) = 0; virtual FWL_ERR RegisterEventTarget(IFWL_Widget *pListener, IFWL_Widget *pEventSource = NULL, FX_DWORD dwFilter = FWL_EVENT_ALL_MASK) = 0; @@ -363,12 +364,14 @@ IFWL_Widget* FWL_GetCurrentThreadModalWidget(IFWL_NoteThread *pNoteThread); class IFWL_NoteLoop { public: + virtual ~IFWL_NoteLoop() {} virtual FX_BOOL PreProcessMessage(CFWL_Message *pMessage) = 0; virtual FWL_ERR Idle(int32_t count) = 0; }; class IFWL_ToolTipTarget { public: + virtual ~IFWL_ToolTipTarget() {} virtual IFWL_Widget* GetWidget() = 0; virtual FX_BOOL IsShowed() = 0; virtual FWL_ERR DrawToolTip(CFX_Graphics *pGraphics, const CFX_Matrix *pMatrix, IFWL_Widget *pToolTip) = 0; diff --git a/xfa/include/fwl/core/fwl_theme.h b/xfa/include/fwl/core/fwl_theme.h index 9ab970b47c..94e81771a9 100644 --- a/xfa/include/fwl/core/fwl_theme.h +++ b/xfa/include/fwl/core/fwl_theme.h @@ -75,6 +75,7 @@ public: class IFWL_ThemeProvider { public: + virtual ~IFWL_ThemeProvider() {} virtual FX_BOOL IsValidWidget(IFWL_Widget *pWidget) = 0; virtual FX_DWORD GetThemeID(IFWL_Widget *pWidget) = 0; virtual FX_DWORD SetThemeID(IFWL_Widget *pWidget, FX_DWORD dwThemeID, FX_BOOL bChildren = TRUE) = 0; diff --git a/xfa/include/fwl/core/fwl_timer.h b/xfa/include/fwl/core/fwl_timer.h index a12f92a9d3..eae5bf48b4 100644 --- a/xfa/include/fwl/core/fwl_timer.h +++ b/xfa/include/fwl/core/fwl_timer.h @@ -13,6 +13,7 @@ typedef struct _FWL_HTIMER { class IFWL_Timer { public: + virtual ~IFWL_Timer() {} virtual int32_t Run(FWL_HTIMER hTimer) = 0; }; FWL_HTIMER FWL_StartTimer(IFWL_Timer *pTimer, FX_DWORD dwElapse, FX_BOOL bImmediately = TRUE); diff --git a/xfa/include/fwl/core/fwl_widget.h b/xfa/include/fwl/core/fwl_widget.h index b6377cdc9f..6c3164c5e0 100644 --- a/xfa/include/fwl/core/fwl_widget.h +++ b/xfa/include/fwl/core/fwl_widget.h @@ -15,9 +15,11 @@ class IFWL_WidgetDelegate; class IFWL_Custom; class IFWL_Proxy; class IFWL_Form; + class IFWL_DataProvider { public: + virtual ~IFWL_DataProvider() {} virtual FWL_ERR GetCaption(IFWL_Widget *pWidget, CFX_WideString &wsCaption) = 0; }; class IFWL_Widget : public IFWL_Target @@ -59,6 +61,7 @@ public: class IFWL_WidgetDelegate { public: + virtual ~IFWL_WidgetDelegate() {} virtual int32_t OnProcessMessage(CFWL_Message *pMessage) = 0; virtual FWL_ERR OnProcessEvent(CFWL_Event *pEvent) = 0; virtual FWL_ERR OnDrawWidget(CFX_Graphics *pGraphics, const CFX_Matrix *pMatrix = NULL) = 0; @@ -103,6 +106,7 @@ protected: class IFWL_Proxy { public: + virtual ~IFWL_Proxy() {} virtual FWL_ERR GetWidgetRect(CFX_RectF &rect, FX_BOOL bAutoSize = FALSE) = 0; virtual FWL_ERR Update() = 0; }; diff --git a/xfa/include/fwl/core/fwl_widgetmgr.h b/xfa/include/fwl/core/fwl_widgetmgr.h index 95ff26a84c..f658476636 100644 --- a/xfa/include/fwl/core/fwl_widgetmgr.h +++ b/xfa/include/fwl/core/fwl_widgetmgr.h @@ -23,6 +23,7 @@ enum FWL_WGTRELATION { class IFWL_WidgetMgr { public: + virtual ~IFWL_WidgetMgr() {} virtual int32_t CountWidgets(IFWL_Widget *pParent = NULL) = 0; virtual IFWL_Widget* GetWidget(int32_t nIndex, IFWL_Widget *pParent = NULL) = 0; virtual IFWL_Widget* GetWidget(IFWL_Widget *pWidget, FWL_WGTRELATION eRelation) = 0; @@ -39,6 +40,7 @@ FX_BOOL FWL_WidgetIsChild(IFWL_Widget *parent, IFWL_Widget *find); class IFWL_WidgetMgrDelegate { public: + virtual ~IFWL_WidgetMgrDelegate() {} virtual FWL_ERR OnSetCapability(FX_DWORD dwCapability = FWL_WGTMGR_DisableThread) = 0; virtual int32_t OnProcessMessageToForm(CFWL_Message *pMessage) = 0; virtual FWL_ERR OnDrawWidget(IFWL_Widget *pWidget, CFX_Graphics *pGraphics, const CFX_Matrix *pMatrix = NULL) = 0; -- cgit v1.2.3