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

Side by Side Diff: chrome_elf/breakpad.h

Issue 1841573002: [Chrome ELF] New NT registry API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit fixes & CreateRegKey now recursive. Created 4 years, 6 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
robertshield 2016/06/23 02:29:36 Why is this file moved in this CL? If intentional,
penny 2016/06/25 21:13:43 Yes. I've updated the CL description with a menti
5 #ifndef CHROME_ELF_BREAKPAD_H_
6 #define CHROME_ELF_BREAKPAD_H_
7
8 #include <windows.h>
9
10 namespace google_breakpad {
11 class ExceptionHandler;
12 }
13
14 // Initializes collection and upload of crash reports. This will only be done if
15 // the user has agreed to crash dump reporting.
16 //
17 // Crash reporting has to be initialized as early as possible (e.g., the first
18 // thing in main()) to catch crashes occuring during process startup.
19 // Crashes which occur during the global static construction phase will not
20 // be caught and reported. This should not be a problem as static non-POD
21 // objects are not allowed by the style guide and exceptions to this rule are
22 // rare.
23 void InitializeCrashReporting();
24
25 // Generates a crashdump for the provided |exinfo|. This crashdump will be
26 // either be saved locally, or uploaded, depending on how the ExceptionHandler
27 // has been configured.
28 int GenerateCrashDump(EXCEPTION_POINTERS* exinfo);
29
30 // Global pointer to the ExceptionHandler. This is initialized by
31 // InitializeCrashReporting() and used by GenerateCrashDump() to record dumps.
32 extern google_breakpad::ExceptionHandler* g_elf_breakpad;
33
34 #endif // CHROME_ELF_BREAKPAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698