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

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

Issue 9960072: Upstream crash changes for android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixes to gyp and a typo in breakpad_linuxish.cc 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_linuxish.h"
9 9
10 #include "base/memory/singleton.h" 10 #include "base/memory/singleton.h"
11 11
12 CrashHandlerHostLinux::CrashHandlerHostLinux() 12 CrashHandlerHostLinux::CrashHandlerHostLinux()
13 : process_socket_(-1), 13 : process_socket_(-1),
14 browser_socket_(-1) { 14 browser_socket_(-1) {
15 } 15 }
16 16
17 CrashHandlerHostLinux::~CrashHandlerHostLinux() { 17 CrashHandlerHostLinux::~CrashHandlerHostLinux() {
18 } 18 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « chrome/browser/crash_handler_host_linuxish.cc ('k') | chrome/browser/ui/gtk/first_run_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698