summaryrefslogtreecommitdiffstats
path: root/chrome/browser/crash_handler_host_linux_stub.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/crash_handler_host_linux_stub.cc')
-rw-r--r--chrome/browser/crash_handler_host_linux_stub.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/chrome/browser/crash_handler_host_linux_stub.cc b/chrome/browser/crash_handler_host_linux_stub.cc
index 6835bc2..157d772 100644
--- a/chrome/browser/crash_handler_host_linux_stub.cc
+++ b/chrome/browser/crash_handler_host_linux_stub.cc
@@ -7,6 +7,8 @@
#include "chrome/browser/crash_handler_host_linux.h"
+#include "base/singleton.h"
+
CrashHandlerHostLinux::CrashHandlerHostLinux()
: process_socket_(-1),
browser_socket_(-1) {
@@ -30,8 +32,18 @@ PluginCrashHandlerHostLinux::PluginCrashHandlerHostLinux() {
PluginCrashHandlerHostLinux::~PluginCrashHandlerHostLinux() {
}
+// static
+PluginCrashHandlerHostLinux* PluginCrashHandlerHostLinux::GetInstance() {
+ return Singleton<PluginCrashHandlerHostLinux>::get();
+}
+
RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() {
}
RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() {
}
+
+// static
+RendererCrashHandlerHostLinux* RendererCrashHandlerHostLinux::GetInstance() {
+ return Singleton<RendererCrashHandlerHostLinux>::get();
+}