crash_handler_host_linux_stub.cc revision 3345a6884c488ff3a535c2c9acdd33d74b37e311
1// Copyright (c) 2010 The Chromium Authors. All rights reserved.
2// 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
8#include "chrome/browser/crash_handler_host_linux.h"
9
10CrashHandlerHostLinux::CrashHandlerHostLinux()
11    : process_socket_(-1),
12      browser_socket_(-1) {
13}
14
15CrashHandlerHostLinux::~CrashHandlerHostLinux() {
16}
17
18void CrashHandlerHostLinux::OnFileCanReadWithoutBlocking(int fd) {
19}
20
21void CrashHandlerHostLinux::OnFileCanWriteWithoutBlocking(int fd) {
22}
23
24void CrashHandlerHostLinux::WillDestroyCurrentMessageLoop() {
25}
26
27PluginCrashHandlerHostLinux::PluginCrashHandlerHostLinux() {
28}
29
30PluginCrashHandlerHostLinux::~PluginCrashHandlerHostLinux() {
31}
32
33RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() {
34}
35
36RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() {
37}
38