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

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

Issue 5519016: Add a new GetInstance() method for singleton classes used in chrome/browser files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 10 years 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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698