summaryrefslogtreecommitdiffstats
path: root/chrome/browser/crash_handler_host_linux_stub.cc
diff options
context:
space:
mode:
authorpiman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 22:05:29 +0000
committerpiman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 22:05:29 +0000
commit54457f38c36e43d9f5d434e5bfc3cb83d9e56926 (patch)
treeaa82f84163493b674038c9e3752d00f605b9ad38 /chrome/browser/crash_handler_host_linux_stub.cc
parenta1a9e7c87641ad88d189c154293bf602859249f3 (diff)
downloadchromium_src-54457f38c36e43d9f5d434e5bfc3cb83d9e56926.zip
chromium_src-54457f38c36e43d9f5d434e5bfc3cb83d9e56926.tar.gz
chromium_src-54457f38c36e43d9f5d434e5bfc3cb83d9e56926.tar.bz2
Fix crash reporting for ppapi
BUG=chromium-os:13952 TEST=run chrome with CHROME_HEADLESS=1 and pepper flash, kill -11 the ppapi process, check that a report gets written to disk Review URL: http://codereview.chromium.org/6864005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/crash_handler_host_linux_stub.cc')
-rw-r--r--chrome/browser/crash_handler_host_linux_stub.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/browser/crash_handler_host_linux_stub.cc b/chrome/browser/crash_handler_host_linux_stub.cc
index 6c140e5..6891de1 100644
--- a/chrome/browser/crash_handler_host_linux_stub.cc
+++ b/chrome/browser/crash_handler_host_linux_stub.cc
@@ -58,3 +58,14 @@ RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() {
RendererCrashHandlerHostLinux* RendererCrashHandlerHostLinux::GetInstance() {
return Singleton<RendererCrashHandlerHostLinux>::get();
}
+
+PpapiCrashHandlerHostLinux::PpapiCrashHandlerHostLinux() {
+}
+
+PpapiCrashHandlerHostLinux::~PpapiCrashHandlerHostLinux() {
+}
+
+// static
+PpapiCrashHandlerHostLinux* PpapiCrashHandlerHostLinux::GetInstance() {
+ return Singleton<PpapiCrashHandlerHostLinux>::get();
+}