Chromium Code Reviews| Index: chrome/browser/crash_handler_host_linux.cc |
| =================================================================== |
| --- chrome/browser/crash_handler_host_linux.cc (revision 73306) |
| +++ chrome/browser/crash_handler_host_linux.cc (working copy) |
| @@ -354,6 +354,22 @@ |
| return shutting_down_; |
| } |
| +GpuCrashHandlerHostLinux::GpuCrashHandlerHostLinux() { |
| + InitCrashUploaderThread(); |
| +} |
| + |
| +GpuCrashHandlerHostLinux::~GpuCrashHandlerHostLinux() { |
| +} |
| + |
| +void GpuCrashHandlerHostLinux::SetProcessType() { |
| + process_type_ = "gpu-process"; |
|
Lei Zhang
2011/02/03 08:00:45
nit: gpu is fine.
Vangelis Kokkevis
2011/02/03 08:26:33
I wasn't sure if this is supposed to match the pro
|
| +} |
| + |
| +// static |
| +GpuCrashHandlerHostLinux* GpuCrashHandlerHostLinux::GetInstance() { |
| + return Singleton<GpuCrashHandlerHostLinux>::get(); |
| +} |
| + |
| PluginCrashHandlerHostLinux::PluginCrashHandlerHostLinux() { |
| InitCrashUploaderThread(); |
| } |