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

Side by Side Diff: chrome/browser/crash_handler_host_posix_stub.cc

Issue 9838033: Upstream native crash handling changes for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed a stale comment. Created 8 years, 8 months 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) 2011 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_posix.h"
9
10 #include "base/memory/singleton.h"
11
12 CrashHandlerHostPosix::CrashHandlerHostPosix()
13 : process_socket_(-1),
14 browser_socket_(-1) {
15 }
16
17 CrashHandlerHostPosix::~CrashHandlerHostPosix() {
18 }
19
20 void CrashHandlerHostPosix::OnFileCanReadWithoutBlocking(int fd) {
21 }
22
23 void CrashHandlerHostPosix::OnFileCanWriteWithoutBlocking(int fd) {
24 }
25
26 void CrashHandlerHostPosix::WillDestroyCurrentMessageLoop() {
27 }
28
29 ExtensionCrashHandlerHostPosix::ExtensionCrashHandlerHostPosix() {
30 }
31
32 ExtensionCrashHandlerHostPosix::~ExtensionCrashHandlerHostPosix() {
33 }
34
35 // static
36 ExtensionCrashHandlerHostPosix* ExtensionCrashHandlerHostPosix::GetInstance() {
37 return Singleton<ExtensionCrashHandlerHostPosix>::get();
38 }
39
40 GpuCrashHandlerHostPosix::GpuCrashHandlerHostPosix() {
41 }
42
43 GpuCrashHandlerHostPosix::~GpuCrashHandlerHostPosix() {
44 }
45
46 // static
47 GpuCrashHandlerHostPosix* GpuCrashHandlerHostPosix::GetInstance() {
48 return Singleton<GpuCrashHandlerHostPosix>::get();
49 }
50
51 PluginCrashHandlerHostPosix::PluginCrashHandlerHostPosix() {
52 }
53
54 PluginCrashHandlerHostPosix::~PluginCrashHandlerHostPosix() {
55 }
56
57 // static
58 PluginCrashHandlerHostPosix* PluginCrashHandlerHostPosix::GetInstance() {
59 return Singleton<PluginCrashHandlerHostPosix>::get();
60 }
61
62 PpapiCrashHandlerHostPosix::PpapiCrashHandlerHostPosix() {
63 }
64
65 PpapiCrashHandlerHostPosix::~PpapiCrashHandlerHostPosix() {
66 }
67
68 // static
69 PpapiCrashHandlerHostPosix* PpapiCrashHandlerHostPosix::GetInstance() {
70 return Singleton<PpapiCrashHandlerHostPosix>::get();
71 }
72
73 RendererCrashHandlerHostPosix::RendererCrashHandlerHostPosix() {
74 }
75
76 RendererCrashHandlerHostPosix::~RendererCrashHandlerHostPosix() {
77 }
78
79 // static
80 RendererCrashHandlerHostPosix* RendererCrashHandlerHostPosix::GetInstance() {
81 return Singleton<RendererCrashHandlerHostPosix>::get();
82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698