diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-09 04:21:51 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-09 04:21:51 +0000 |
commit | 2456c5732fe85109c39dbdd3dbbb8262589a847e (patch) | |
tree | 2c80c90ee30afb95428903c267e0eebe028d73f5 /chrome/browser/crash_handler_host_linux_stub.cc | |
parent | 22dac03746590ef7367c8af21ace424b77cae16d (diff) | |
download | chromium_src-2456c5732fe85109c39dbdd3dbbb8262589a847e.zip chromium_src-2456c5732fe85109c39dbdd3dbbb8262589a847e.tar.gz chromium_src-2456c5732fe85109c39dbdd3dbbb8262589a847e.tar.bz2 |
Linux: Catch plugin crashes.
BUG=25964
TEST=none
Review URL: http://codereview.chromium.org/371015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31416 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.cc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/chrome/browser/crash_handler_host_linux_stub.cc b/chrome/browser/crash_handler_host_linux_stub.cc new file mode 100644 index 0000000..e95f679 --- /dev/null +++ b/chrome/browser/crash_handler_host_linux_stub.cc @@ -0,0 +1,25 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// This is a stub file which is compiled in when we are building without +// breakpad support. + +#include "chrome/browser/crash_handler_host_linux.h" + +CrashHandlerHostLinux::CrashHandlerHostLinux() + : process_socket_(-1), + browser_socket_(-1) { +} + +CrashHandlerHostLinux::~CrashHandlerHostLinux() { +} + +void CrashHandlerHostLinux::OnFileCanReadWithoutBlocking(int fd) { +} + +void CrashHandlerHostLinux::OnFileCanWriteWithoutBlocking(int fd) { +} + +void CrashHandlerHostLinux::WillDestroyCurrentMessageLoop() { +} |