| 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..b559e82cf9f40b59a10137733d145a6fc206ad9c | 
| --- /dev/null | 
| +++ b/chrome_elf/crash/crash_helper.h | 
| @@ -0,0 +1,32 @@ | 
| +// 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 InitializeCrashReporting(); | 
| + | 
| +// Any late cleanup of the crash handling system. | 
| +void ShutdownCrashReporting(); | 
| + | 
| +// Permanently disables subsequent calls to | 
| +// kernel32!SetUnhandledExceptionFilter(), see comment in .cc for why this is | 
| +// needed. | 
| +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. | 
| +// Note: the handler takes a minidump. | 
| +int GenerateCrashDump(EXCEPTION_POINTERS* exception_pointers); | 
| +} | 
| + | 
| +#endif  // CHROME_ELF_CRASH_CRASH_HELPER_H_ | 
|  |