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

Unified Diff: chrome_frame/crash_reporting/vectored_handler.h

Issue 536073: Suppress crash dump generation due to IsBadXXX functions.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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_frame/crash_reporting/vectored_handler.h
===================================================================
--- chrome_frame/crash_reporting/vectored_handler.h (revision 36161)
+++ chrome_frame/crash_reporting/vectored_handler.h (working copy)
@@ -77,6 +77,10 @@
g_module_start = module_start;
g_module_end = module_end;
}
+
+ static bool ShouldIgnoreException(const EXCEPTION_POINTERS* exceptionInfo) {
+ return false;
+ }
};
DECLSPEC_SELECTANY const void* VEHTraitsBase::g_module_start;

Powered by Google App Engine
This is Rietveld 408576698