Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: chrome/browser/renderer_host/render_crash_handler_host_linux_stub.cc

Issue 371015: Linux: Catch plugin crashes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2009 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/renderer_host/render_crash_handler_host_linux.h"
9
10 RenderCrashHandlerHostLinux::RenderCrashHandlerHostLinux()
11 : renderer_socket_(-1),
12 browser_socket_(-1) {
13 }
14
15 RenderCrashHandlerHostLinux::~RenderCrashHandlerHostLinux() {
16 }
17
18 void RenderCrashHandlerHostLinux::OnFileCanReadWithoutBlocking(int fd) {
19 }
20
21 void RenderCrashHandlerHostLinux::OnFileCanWriteWithoutBlocking(int fd) {
22 }
23
24 void RenderCrashHandlerHostLinux::WillDestroyCurrentMessageLoop() {
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698