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

Unified Diff: chrome_elf/crash/crash_helper.h

Issue 2183263003: [chrome_elf] Big ELF cleanup. Part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjusted g_crash_reports. Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome_elf/crash/crash_helper.h
diff --git a/chrome_elf/crash/crash_helper.h b/chrome_elf/crash/crash_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..26753bd740018a5b67b3d800ab0a5ca396c820b6
--- /dev/null
+++ b/chrome_elf/crash/crash_helper.h
@@ -0,0 +1,29 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_ELF_CRASH_CRASH_HELPER_H_
+#define CHROME_ELF_CRASH_CRASH_HELPER_H_
+
+#include <windows.h>
+
+// Keep all crash-related APIs here. All other chrome_elf code should call here
+// for crash support.
+namespace elf_crash {
+
+// Init the crash handling system for entire process.
+void InitializeCrashReportingForProcess();
robertshield 2016/08/02 02:38:41 Is the ForProcess suffix needed?
penny 2016/08/02 21:07:43 Done.
+
+// Any late cleanup before DLL unload.
+void DllDetachCrashReportingCleanup();
robertshield 2016/08/02 02:38:40 This is a complementary function to InitializeCras
penny 2016/08/02 21:07:43 Done.
+
+// Used to control unhandled-exception filters.
robertshield 2016/08/02 02:38:41 This is a crazy and awesome hack and should be doc
penny 2016/08/02 21:07:43 Done.
+void DisableSetUnhandledExceptionFilter();
+
+// Exception handler for exceptions in chrome_elf which need to be passed on to
+// the next handler in the chain. Examples include exceptions in DllMain,
+// blacklist interception code, etc.
robertshield 2016/08/02 02:38:40 This comment should also mention that the handler
penny 2016/08/02 21:07:43 Done.
+int GenerateCrashDump(EXCEPTION_POINTERS* exception_pointers);
+}
+
+#endif // CHROME_ELF_CRASH_CRASH_HELPER_H_

Powered by Google App Engine
This is Rietveld 408576698