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

Unified Diff: chrome_frame/exception_barrier_lowlevel.asm

Issue 1748016: Avoid reporting crashes for exceptions that hit our SEH from calls to the ori... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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/exception_barrier_lowlevel.asm
===================================================================
--- chrome_frame/exception_barrier_lowlevel.asm (revision 45764)
+++ chrome_frame/exception_barrier_lowlevel.asm (working copy)
@@ -10,9 +10,17 @@
IF @version LT 800
_ExceptionBarrierHandler PROTO
.SAFESEH _ExceptionBarrierHandler
+_ExceptionBarrierReportOnlyModuleHandler PROTO
+.SAFESEH _ExceptionBarrierReportOnlyModuleHandler
+_ExceptionBarrierCallCustomHandler PROTO
+.SAFESEH _ExceptionBarrierCallCustomHandler
ELSE
ExceptionBarrierHandler PROTO
.SAFESEH ExceptionBarrierHandler
+ExceptionBarrierReportOnlyModuleHandler PROTO
+.SAFESEH ExceptionBarrierReportOnlyModuleHandler
+ExceptionBarrierCallCustomHandler PROTO
+.SAFESEH ExceptionBarrierCallCustomHandler
ENDIF
.586

Powered by Google App Engine
This is Rietveld 408576698