blob: fc81c273cd94d8a9bc553675391b8efcb0d1dd2f [file] [log] [blame]
[email protected]6653c192012-04-10 22:52:441// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]2456c572009-11-09 04:21:512// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// This is a stub file which is compiled in when we are building without
6// breakpad support.
7
[email protected]1602cde2012-06-26 15:09:128#include "chrome/browser/crash_handler_host_linux.h"
[email protected]2456c572009-11-09 04:21:519
[email protected]3b63f8f42011-03-28 01:54:1510#include "base/memory/singleton.h"
[email protected]d3c6c0d72010-12-09 08:15:0411
[email protected]2456c572009-11-09 04:21:5112CrashHandlerHostLinux::CrashHandlerHostLinux()
13 : process_socket_(-1),
14 browser_socket_(-1) {
15}
16
17CrashHandlerHostLinux::~CrashHandlerHostLinux() {
18}
19
20void CrashHandlerHostLinux::OnFileCanReadWithoutBlocking(int fd) {
21}
22
23void CrashHandlerHostLinux::OnFileCanWriteWithoutBlocking(int fd) {
24}
25
26void CrashHandlerHostLinux::WillDestroyCurrentMessageLoop() {
27}
[email protected]b064f0eb2010-09-02 23:53:2628
[email protected]9dbfff12011-07-01 19:37:0729ExtensionCrashHandlerHostLinux::ExtensionCrashHandlerHostLinux() {
30}
31
32ExtensionCrashHandlerHostLinux::~ExtensionCrashHandlerHostLinux() {
33}
34
35// static
36ExtensionCrashHandlerHostLinux* ExtensionCrashHandlerHostLinux::GetInstance() {
37 return Singleton<ExtensionCrashHandlerHostLinux>::get();
38}
39
[email protected]9289af822011-02-03 18:21:2040GpuCrashHandlerHostLinux::GpuCrashHandlerHostLinux() {
41}
42
43GpuCrashHandlerHostLinux::~GpuCrashHandlerHostLinux() {
44}
45
46// static
47GpuCrashHandlerHostLinux* GpuCrashHandlerHostLinux::GetInstance() {
48 return Singleton<GpuCrashHandlerHostLinux>::get();
49}
50
[email protected]b064f0eb2010-09-02 23:53:2651PluginCrashHandlerHostLinux::PluginCrashHandlerHostLinux() {
52}
53
54PluginCrashHandlerHostLinux::~PluginCrashHandlerHostLinux() {
55}
56
[email protected]d3c6c0d72010-12-09 08:15:0457// static
58PluginCrashHandlerHostLinux* PluginCrashHandlerHostLinux::GetInstance() {
59 return Singleton<PluginCrashHandlerHostLinux>::get();
60}
61
[email protected]54457f32011-04-15 22:05:2962PpapiCrashHandlerHostLinux::PpapiCrashHandlerHostLinux() {
63}
64
65PpapiCrashHandlerHostLinux::~PpapiCrashHandlerHostLinux() {
66}
67
68// static
69PpapiCrashHandlerHostLinux* PpapiCrashHandlerHostLinux::GetInstance() {
70 return Singleton<PpapiCrashHandlerHostLinux>::get();
71}
[email protected]9dbfff12011-07-01 19:37:0772
73RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() {
74}
75
76RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() {
77}
78
79// static
80RendererCrashHandlerHostLinux* RendererCrashHandlerHostLinux::GetInstance() {
81 return Singleton<RendererCrashHandlerHostLinux>::get();
82}