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

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

Issue 9838033: Upstream native crash handling changes for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: In response to comments. Lots of linux to posix 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) 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"
Yaron 2012/04/03 23:54:20 This file needs to be updated to posix throughout
carlosvaldivia 2012/04/04 20:52:34 Done.
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

Powered by Google App Engine
This is Rietveld 408576698