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

Side by Side Diff: chrome/browser/crash_handler_host_posix.h

Issue 9838033: Upstream native crash handling changes for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Chrome Android native crash support Created 8 years, 9 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 #ifndef CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_ 5 #ifndef CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_
Yaron 2012/03/26 18:51:16 Update these
carlosvaldivia 2012/04/03 06:24:47 Done.
6 #define CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_ 6 #define CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 11
12 #if defined(USE_LINUX_BREAKPAD) 12 #if defined(USE_LINUX_BREAKPAD)
13 #include <sys/types.h> 13 #include <sys/types.h>
14 14
15 #include <string> 15 #include <string>
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 virtual ~RendererCrashHandlerHostLinux(); 175 virtual ~RendererCrashHandlerHostLinux();
176 176
177 #if defined(USE_LINUX_BREAKPAD) 177 #if defined(USE_LINUX_BREAKPAD)
178 virtual void SetProcessType() OVERRIDE; 178 virtual void SetProcessType() OVERRIDE;
179 #endif 179 #endif
180 180
181 DISALLOW_COPY_AND_ASSIGN(RendererCrashHandlerHostLinux); 181 DISALLOW_COPY_AND_ASSIGN(RendererCrashHandlerHostLinux);
182 }; 182 };
183 183
184 #endif // CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_ 184 #endif // CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698