OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This is a stub file which is compiled in when we are building without | 5 // This is a stub file which is compiled in when we are building without |
6 // breakpad support. | 6 // breakpad support. |
7 | 7 |
8 #include "chrome/browser/crash_handler_host_linux.h" | 8 #include "chrome/browser/crash_handler_host_linux.h" |
9 | 9 |
10 CrashHandlerHostLinux::CrashHandlerHostLinux() | 10 CrashHandlerHostLinux::CrashHandlerHostLinux() |
11 : process_socket_(-1), | 11 : process_socket_(-1), |
12 browser_socket_(-1) { | 12 browser_socket_(-1) { |
13 } | 13 } |
14 | 14 |
15 CrashHandlerHostLinux::~CrashHandlerHostLinux() { | 15 CrashHandlerHostLinux::~CrashHandlerHostLinux() { |
16 } | 16 } |
17 | 17 |
18 void CrashHandlerHostLinux::OnFileCanReadWithoutBlocking(int fd) { | 18 void CrashHandlerHostLinux::OnFileCanReadWithoutBlocking(int fd) { |
19 } | 19 } |
20 | 20 |
21 void CrashHandlerHostLinux::OnFileCanWriteWithoutBlocking(int fd) { | 21 void CrashHandlerHostLinux::OnFileCanWriteWithoutBlocking(int fd) { |
22 } | 22 } |
23 | 23 |
24 void CrashHandlerHostLinux::WillDestroyCurrentMessageLoop() { | 24 void CrashHandlerHostLinux::WillDestroyCurrentMessageLoop() { |
25 } | 25 } |
| 26 |
| 27 PluginCrashHandlerHostLinux::PluginCrashHandlerHostLinux() { |
| 28 } |
| 29 |
| 30 PluginCrashHandlerHostLinux::~PluginCrashHandlerHostLinux() { |
| 31 } |
| 32 |
| 33 RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() { |
| 34 } |
| 35 |
| 36 RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() { |
| 37 } |
OLD | NEW |