| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() { | 73 RendererCrashHandlerHostLinux::RendererCrashHandlerHostLinux() { |
| 74 } | 74 } |
| 75 | 75 |
| 76 RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() { | 76 RendererCrashHandlerHostLinux::~RendererCrashHandlerHostLinux() { |
| 77 } | 77 } |
| 78 | 78 |
| 79 // static | 79 // static |
| 80 RendererCrashHandlerHostLinux* RendererCrashHandlerHostLinux::GetInstance() { | 80 RendererCrashHandlerHostLinux* RendererCrashHandlerHostLinux::GetInstance() { |
| 81 return Singleton<RendererCrashHandlerHostLinux>::get(); | 81 return Singleton<RendererCrashHandlerHostLinux>::get(); |
| 82 } | 82 } |
| OLD | NEW |