| OLD | NEW |
| 1 // Copyright (c) 2010 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() |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 void CrashHandlerHostLinux::WillDestroyCurrentMessageLoop() { | 24 void CrashHandlerHostLinux::WillDestroyCurrentMessageLoop() { |
| 25 } | 25 } |
| 26 | 26 |
| 27 PluginCrashHandlerHostLinux::PluginCrashHandlerHostLinux() { | 27 PluginCrashHandlerHostLinux::PluginCrashHandlerHostLinux() { |
| 28 } | 28 } |
| 29 | 29 |
| 30 PluginCrashHandlerHostLinux::~PluginCrashHandlerHostLinux() { | 30 PluginCrashHandlerHostLinux::~PluginCrashHandlerHostLinux() { |
| 31 } | 31 } |
| 32 | 32 |
| 33 // static |
| 34 PluginCrashHandlerHostLinux* PluginCrashHandlerHostLinux::GetInstance() { |
| 35 return Singleton<PluginCrashHandlerHostLinux>::get(); |
| 36 } |
| 37 |
| 33 RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() { | 38 RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() { |
| 34 } | 39 } |
| 35 | 40 |
| 36 RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() { | 41 RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() { |
| 37 } | 42 } |
| 43 |
| 44 // static |
| 45 RendererCrashHandlerHostLinux* RendererCrashHandlerHostLinux::GetInstance() { |
| 46 return Singleton<RendererCrashHandlerHostLinux>::get(); |
| 47 } |
| OLD | NEW |