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

Unified Diff: chrome_frame/exception_barrier_lowlevel.asm

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 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
« no previous file with comments | « chrome_frame/exception_barrier.cc ('k') | chrome_frame/extra_system_apis.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/exception_barrier_lowlevel.asm
diff --git a/chrome_frame/exception_barrier_lowlevel.asm b/chrome_frame/exception_barrier_lowlevel.asm
deleted file mode 100644
index 949195df087e45d2992773bf64458ebbee93d2e4..0000000000000000000000000000000000000000
--- a/chrome_frame/exception_barrier_lowlevel.asm
+++ /dev/null
@@ -1,61 +0,0 @@
-; Copyright (c) 2010 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.
-;
-; Tag the exception handler as an SEH handler in case the executable
-; is linked with /SAFESEH (which is the default).
-;
-; MASM 8.0 inserts an additional leading underscore in front of names
-; and this is an attempted fix until we understand why.
-; MASM 10.0 fixed this.
-IF @version LT 800 OR @version GE 1000
-_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
-.MODEL FLAT, STDCALL
-ASSUME FS:NOTHING
-.CODE
-
-; extern "C" void WINAPI RegisterExceptionRecord(
-; EXCEPTION_REGISTRATION *registration,
-; ExceptionHandlerFunc func);
-RegisterExceptionRecord PROC registration:DWORD, func:DWORD
-OPTION PROLOGUE:None
-OPTION EPILOGUE:None
- mov edx, DWORD PTR [esp + 4] ; edx is registration
- mov eax, DWORD PTR [esp + 8] ; eax is func
- mov DWORD PTR [edx + 4], eax
- mov eax, FS:[0]
- mov DWORD PTR [edx], eax
- mov FS:[0], edx
- ret 8
-
-RegisterExceptionRecord ENDP
-
-; extern "C" void UnregisterExceptionRecord(
-; EXCEPTION_REGISTRATION *registration);
-UnregisterExceptionRecord PROC registration:DWORD
-OPTION PROLOGUE:None
-OPTION EPILOGUE:None
-
- mov edx, DWORD PTR [esp + 4]
- mov eax, [edx]
- mov FS:[0], eax
- ret 4
-
-UnregisterExceptionRecord ENDP
-
-END
« no previous file with comments | « chrome_frame/exception_barrier.cc ('k') | chrome_frame/extra_system_apis.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698