diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-10-04 23:33:30 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-10-04 23:33:30 +0000 |
commit | 39cf6a765ae349242289ec3287eaf4d6c5fd57f8 (patch) | |
tree | ec387ee09ee40a2628a27f4215cd836749644bd3 | |
parent | 57353fb32972af2254070bfb2f662c8add8b2efb (diff) | |
download | pdfium-chromium/3571.tar.xz |
Change |virtual ~Foo(){}| to |virtual ~Foo()=default;|chromium/3571
Otherwise code coverage flags the empty body as unreachable.
Change-Id: Iee1d9a876d68276529c70d9b8c7a28276f271767
Reviewed-on: https://pdfium-review.googlesource.com/c/43514
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
-rw-r--r-- | core/fpdfapi/font/cfx_cttgsubtable.h | 2 | ||||
-rw-r--r-- | core/fpdfapi/parser/cpdf_document.h | 2 | ||||
-rw-r--r-- | core/fpdfdoc/ipdf_formnotify.h | 2 | ||||
-rw-r--r-- | core/fpdfdoc/ipvt_fontmap.h | 2 | ||||
-rw-r--r-- | core/fxcodec/codec/codec_module_iface.h | 4 | ||||
-rw-r--r-- | core/fxcrt/fileaccess_iface.h | 2 | ||||
-rw-r--r-- | core/fxcrt/locale_iface.h | 2 | ||||
-rw-r--r-- | core/fxcrt/pauseindicator_iface.h | 2 | ||||
-rw-r--r-- | core/fxge/dib/scanlinecomposer_iface.h | 2 | ||||
-rw-r--r-- | fpdfsdk/ipdfsdk_annothandler.h | 2 | ||||
-rw-r--r-- | fpdfsdk/pwl/cpwl_edit.h | 2 | ||||
-rw-r--r-- | fpdfsdk/pwl/cpwl_edit_impl.h | 2 | ||||
-rw-r--r-- | fpdfsdk/pwl/cpwl_wnd.h | 4 | ||||
-rw-r--r-- | fxjs/ijs_event_context.h | 2 | ||||
-rw-r--r-- | testing/embedder_test.h | 2 | ||||
-rw-r--r-- | xfa/fwl/ifwl_adaptertimermgr.h | 2 | ||||
-rw-r--r-- | xfa/fwl/ifwl_themeprovider.h | 2 | ||||
-rw-r--r-- | xfa/fwl/ifwl_widgetdelegate.h | 2 | ||||
-rw-r--r-- | xfa/fxfa/fm2js/cxfa_fmexpression.h | 2 | ||||
-rw-r--r-- | xfa/fxfa/fm2js/cxfa_fmsimpleexpression.h | 2 | ||||
-rw-r--r-- | xfa/fxfa/fxfa.h | 6 |
21 files changed, 25 insertions, 25 deletions
diff --git a/core/fpdfapi/font/cfx_cttgsubtable.h b/core/fpdfapi/font/cfx_cttgsubtable.h index 6b23a8db27..54e16b4aed 100644 --- a/core/fpdfapi/font/cfx_cttgsubtable.h +++ b/core/fpdfapi/font/cfx_cttgsubtable.h @@ -60,7 +60,7 @@ class CFX_CTTGSUBTable { }; struct TCoverageFormatBase { - virtual ~TCoverageFormatBase() {} + virtual ~TCoverageFormatBase() = default; uint16_t CoverageFormat; }; diff --git a/core/fpdfapi/parser/cpdf_document.h b/core/fpdfapi/parser/cpdf_document.h index be3f30ce5d..d61129378e 100644 --- a/core/fpdfapi/parser/cpdf_document.h +++ b/core/fpdfapi/parser/cpdf_document.h @@ -47,7 +47,7 @@ class CPDF_Document : public Observable<CPDF_Document>, // Type from which the XFA extension can subclass itself. class Extension { public: - virtual ~Extension() {} + virtual ~Extension() = default; virtual CPDF_Document* GetPDFDoc() const = 0; virtual int GetPageCount() const = 0; virtual void DeletePage(int page_index) = 0; diff --git a/core/fpdfdoc/ipdf_formnotify.h b/core/fpdfdoc/ipdf_formnotify.h index 053ca12a41..7e11ecbd12 100644 --- a/core/fpdfdoc/ipdf_formnotify.h +++ b/core/fpdfdoc/ipdf_formnotify.h @@ -14,7 +14,7 @@ class CPDF_InterForm; class IPDF_FormNotify { public: - virtual ~IPDF_FormNotify() {} + virtual ~IPDF_FormNotify() = default; virtual bool BeforeValueChange(CPDF_FormField* pField, const WideString& csValue) = 0; diff --git a/core/fpdfdoc/ipvt_fontmap.h b/core/fpdfdoc/ipvt_fontmap.h index 31aa73b8a1..a27c0ac28a 100644 --- a/core/fpdfdoc/ipvt_fontmap.h +++ b/core/fpdfdoc/ipvt_fontmap.h @@ -15,7 +15,7 @@ class CPDF_Font; class IPVT_FontMap { public: - virtual ~IPVT_FontMap() {} + virtual ~IPVT_FontMap() = default; virtual CPDF_Font* GetPDFFont(int32_t nFontIndex) = 0; virtual ByteString GetPDFFontAlias(int32_t nFontIndex) = 0; diff --git a/core/fxcodec/codec/codec_module_iface.h b/core/fxcodec/codec/codec_module_iface.h index 08469726aa..e7faa892b2 100644 --- a/core/fxcodec/codec/codec_module_iface.h +++ b/core/fxcodec/codec/codec_module_iface.h @@ -16,10 +16,10 @@ class CodecModuleIface { public: class Context { public: - virtual ~Context() {} + virtual ~Context() = default; }; - virtual ~CodecModuleIface() {} + virtual ~CodecModuleIface() = default; // Returns the number of unprocessed bytes remaining in the input buffer. virtual FX_FILESIZE GetAvailInput(Context* pContext) const = 0; diff --git a/core/fxcrt/fileaccess_iface.h b/core/fxcrt/fileaccess_iface.h index 210080e438..fdabc7465e 100644 --- a/core/fxcrt/fileaccess_iface.h +++ b/core/fxcrt/fileaccess_iface.h @@ -16,7 +16,7 @@ class FileAccessIface { public: static std::unique_ptr<FileAccessIface> Create(); - virtual ~FileAccessIface() {} + virtual ~FileAccessIface() = default; virtual bool Open(const ByteStringView& fileName, uint32_t dwMode) = 0; virtual bool Open(const WideStringView& fileName, uint32_t dwMode) = 0; diff --git a/core/fxcrt/locale_iface.h b/core/fxcrt/locale_iface.h index 7e0ca6fd32..7ee18d93b8 100644 --- a/core/fxcrt/locale_iface.h +++ b/core/fxcrt/locale_iface.h @@ -46,7 +46,7 @@ enum FX_DATETIMETYPE { class LocaleIface { public: - virtual ~LocaleIface() {} + virtual ~LocaleIface() = default; virtual WideString GetName() const = 0; virtual WideString GetDecimalSymbol() const = 0; diff --git a/core/fxcrt/pauseindicator_iface.h b/core/fxcrt/pauseindicator_iface.h index c12b02e427..d5d856d94f 100644 --- a/core/fxcrt/pauseindicator_iface.h +++ b/core/fxcrt/pauseindicator_iface.h @@ -9,7 +9,7 @@ class PauseIndicatorIface { public: - virtual ~PauseIndicatorIface() {} + virtual ~PauseIndicatorIface() = default; virtual bool NeedToPauseNow() = 0; }; diff --git a/core/fxge/dib/scanlinecomposer_iface.h b/core/fxge/dib/scanlinecomposer_iface.h index 2a8fbbccdf..316736f63f 100644 --- a/core/fxge/dib/scanlinecomposer_iface.h +++ b/core/fxge/dib/scanlinecomposer_iface.h @@ -11,7 +11,7 @@ class ScanlineComposerIface { public: - virtual ~ScanlineComposerIface() {} + virtual ~ScanlineComposerIface() = default; virtual void ComposeScanline(int line, const uint8_t* scanline, diff --git a/fpdfsdk/ipdfsdk_annothandler.h b/fpdfsdk/ipdfsdk_annothandler.h index 1476089253..11c43ecf0b 100644 --- a/fpdfsdk/ipdfsdk_annothandler.h +++ b/fpdfsdk/ipdfsdk_annothandler.h @@ -21,7 +21,7 @@ class CXFA_FFWidget; class IPDFSDK_AnnotHandler { public: - virtual ~IPDFSDK_AnnotHandler() {} + virtual ~IPDFSDK_AnnotHandler() = default; virtual bool CanAnswer(CPDFSDK_Annot* pAnnot) = 0; virtual CPDFSDK_Annot* NewAnnot(CPDF_Annot* pAnnot, diff --git a/fpdfsdk/pwl/cpwl_edit.h b/fpdfsdk/pwl/cpwl_edit.h index 849436a3e3..d890834aac 100644 --- a/fpdfsdk/pwl/cpwl_edit.h +++ b/fpdfsdk/pwl/cpwl_edit.h @@ -15,7 +15,7 @@ class IPWL_Filler_Notify { public: - virtual ~IPWL_Filler_Notify() {} + virtual ~IPWL_Filler_Notify() = default; // Must write to |bBottom| and |fPopupRet|. virtual void QueryWherePopup(CPWL_Wnd::PrivateData* pAttached, diff --git a/fpdfsdk/pwl/cpwl_edit_impl.h b/fpdfsdk/pwl/cpwl_edit_impl.h index 7f14ade66a..047286322f 100644 --- a/fpdfsdk/pwl/cpwl_edit_impl.h +++ b/fpdfsdk/pwl/cpwl_edit_impl.h @@ -96,7 +96,7 @@ class CPWL_EditImpl_Undo { class IFX_Edit_UndoItem { public: - virtual ~IFX_Edit_UndoItem() {} + virtual ~IFX_Edit_UndoItem() = default; virtual void Undo() = 0; virtual void Redo() = 0; diff --git a/fpdfsdk/pwl/cpwl_wnd.h b/fpdfsdk/pwl/cpwl_wnd.h index 1ed239ed85..cc6662be30 100644 --- a/fpdfsdk/pwl/cpwl_wnd.h +++ b/fpdfsdk/pwl/cpwl_wnd.h @@ -106,7 +106,7 @@ class CPWL_Wnd : public CPWL_TimerHandler, public Observable<CPWL_Wnd> { class ProviderIface : public Observable<ProviderIface> { public: - virtual ~ProviderIface() {} + virtual ~ProviderIface() = default; // get a matrix which map user space to CWnd client space virtual CFX_Matrix GetWindowMatrix(PrivateData* pAttached) = 0; @@ -114,7 +114,7 @@ class CPWL_Wnd : public CPWL_TimerHandler, public Observable<CPWL_Wnd> { class FocusHandlerIface { public: - virtual ~FocusHandlerIface() {} + virtual ~FocusHandlerIface() = default; virtual void OnSetFocus(CPWL_Edit* pEdit) = 0; }; diff --git a/fxjs/ijs_event_context.h b/fxjs/ijs_event_context.h index a81f9fb5cc..e83c423ff6 100644 --- a/fxjs/ijs_event_context.h +++ b/fxjs/ijs_event_context.h @@ -22,7 +22,7 @@ class CPDFSDK_FormFillEnvironment; // may trigger new events on top of one another. class IJS_EventContext { public: - virtual ~IJS_EventContext() {} + virtual ~IJS_EventContext() = default; virtual Optional<IJS_Runtime::JS_Error> RunScript( const WideString& script) = 0; diff --git a/testing/embedder_test.h b/testing/embedder_test.h index a6a4cf51e4..fc9624118d 100644 --- a/testing/embedder_test.h +++ b/testing/embedder_test.h @@ -39,7 +39,7 @@ class EmbedderTest : public ::testing::Test, class Delegate { public: - virtual ~Delegate() {} + virtual ~Delegate() = default; // Equivalent to UNSUPPORT_INFO::FSDK_UnSupport_Handler(). virtual void UnsupportedHandler(int type) {} diff --git a/xfa/fwl/ifwl_adaptertimermgr.h b/xfa/fwl/ifwl_adaptertimermgr.h index 23627d9191..9f9e5ca91d 100644 --- a/xfa/fwl/ifwl_adaptertimermgr.h +++ b/xfa/fwl/ifwl_adaptertimermgr.h @@ -11,7 +11,7 @@ class IFWL_AdapterTimerMgr { public: - virtual ~IFWL_AdapterTimerMgr() {} + virtual ~IFWL_AdapterTimerMgr() = default; virtual void Start(CFWL_Timer* pTimer, uint32_t dwElapse, bool bImmediately, diff --git a/xfa/fwl/ifwl_themeprovider.h b/xfa/fwl/ifwl_themeprovider.h index 78c3e19fe2..19967680f8 100644 --- a/xfa/fwl/ifwl_themeprovider.h +++ b/xfa/fwl/ifwl_themeprovider.h @@ -19,7 +19,7 @@ class CFWL_Widget; class IFWL_ThemeProvider { public: - virtual ~IFWL_ThemeProvider() {} + virtual ~IFWL_ThemeProvider() = default; virtual void DrawBackground(CFWL_ThemeBackground* pParams) = 0; virtual void DrawText(CFWL_ThemeText* pParams) = 0; diff --git a/xfa/fwl/ifwl_widgetdelegate.h b/xfa/fwl/ifwl_widgetdelegate.h index 09bac9ab4e..17b8933974 100644 --- a/xfa/fwl/ifwl_widgetdelegate.h +++ b/xfa/fwl/ifwl_widgetdelegate.h @@ -16,7 +16,7 @@ class CFX_Matrix; class IFWL_WidgetDelegate { public: - virtual ~IFWL_WidgetDelegate() {} + virtual ~IFWL_WidgetDelegate() = default; virtual void OnProcessMessage(CFWL_Message* pMessage) = 0; virtual void OnProcessEvent(CFWL_Event* pEvent) = 0; diff --git a/xfa/fxfa/fm2js/cxfa_fmexpression.h b/xfa/fxfa/fm2js/cxfa_fmexpression.h index c20d76b075..37999a17b3 100644 --- a/xfa/fxfa/fm2js/cxfa_fmexpression.h +++ b/xfa/fxfa/fm2js/cxfa_fmexpression.h @@ -16,7 +16,7 @@ class CFX_WideTextBuf; class CXFA_FMExpression { public: - virtual ~CXFA_FMExpression() {} + virtual ~CXFA_FMExpression() = default; virtual bool ToJavaScript(CFX_WideTextBuf* js, ReturnType type) = 0; protected: diff --git a/xfa/fxfa/fm2js/cxfa_fmsimpleexpression.h b/xfa/fxfa/fm2js/cxfa_fmsimpleexpression.h index 275d7d4fcb..ae8f38e6e6 100644 --- a/xfa/fxfa/fm2js/cxfa_fmsimpleexpression.h +++ b/xfa/fxfa/fm2js/cxfa_fmsimpleexpression.h @@ -25,7 +25,7 @@ class CFX_WideTextBuf; class CXFA_FMSimpleExpression { public: - virtual ~CXFA_FMSimpleExpression() {} + virtual ~CXFA_FMSimpleExpression() = default; virtual bool ToJavaScript(CFX_WideTextBuf* js, ReturnType type) = 0; XFA_FM_TOKEN GetOperatorToken() const; diff --git a/xfa/fxfa/fxfa.h b/xfa/fxfa/fxfa.h index 5b51067c40..0796347506 100644 --- a/xfa/fxfa/fxfa.h +++ b/xfa/fxfa/fxfa.h @@ -118,7 +118,7 @@ enum XFA_WIDGETTYPE { // Probably should be called IXFA_AppDelegate. class IXFA_AppProvider { public: - virtual ~IXFA_AppProvider() {} + virtual ~IXFA_AppProvider() = default; /** * Returns the language of the running host application. Such as zh_CN @@ -221,7 +221,7 @@ class IXFA_AppProvider { class IXFA_DocEnvironment { public: - virtual ~IXFA_DocEnvironment() {} + virtual ~IXFA_DocEnvironment() = default; virtual void SetChangeMark(CXFA_FFDoc* hDoc) = 0; virtual void InvalidateRect(CXFA_FFPageView* pPageView, @@ -277,7 +277,7 @@ class IXFA_DocEnvironment { class IXFA_WidgetIterator { public: - virtual ~IXFA_WidgetIterator() {} + virtual ~IXFA_WidgetIterator() = default; virtual void Reset() = 0; virtual CXFA_FFWidget* MoveToFirst() = 0; |