summaryrefslogtreecommitdiffstats
path: root/chrome/browser/crash_handler_host_linux.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/crash_handler_host_linux.h')
-rw-r--r--chrome/browser/crash_handler_host_linux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/crash_handler_host_linux.h b/chrome/browser/crash_handler_host_linux.h
index 3f1ea2e..8a76297 100644
--- a/chrome/browser/crash_handler_host_linux.h
+++ b/chrome/browser/crash_handler_host_linux.h
@@ -38,7 +38,7 @@ class CrashHandlerHostLinux : public MessageLoopForIO::Watcher,
protected:
CrashHandlerHostLinux();
- ~CrashHandlerHostLinux();
+ virtual ~CrashHandlerHostLinux();
// This is here on purpose to make CrashHandlerHostLinux abstract.
virtual void SetProcessType() = 0;
@@ -60,7 +60,7 @@ class PluginCrashHandlerHostLinux : public CrashHandlerHostLinux {
PluginCrashHandlerHostLinux() {
SetProcessType();
}
- ~PluginCrashHandlerHostLinux() {}
+ virtual ~PluginCrashHandlerHostLinux() {}
virtual void SetProcessType() {
process_type_ = "plugin";
@@ -75,7 +75,7 @@ class RendererCrashHandlerHostLinux : public CrashHandlerHostLinux {
RendererCrashHandlerHostLinux() {
SetProcessType();
}
- ~RendererCrashHandlerHostLinux() {}
+ virtual ~RendererCrashHandlerHostLinux() {}
virtual void SetProcessType() {
process_type_ = "renderer";