Created
May 17, 2013 01:05
-
-
Save BenjaminPoulain/5596295 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Source/WTF/ChangeLog | |
=================================================================== | |
--- Source/WTF/ChangeLog (revision 150227) | |
+++ Source/WTF/ChangeLog (working copy) | |
@@ -1,3 +1,12 @@ | |
+2013-05-16 Benjamin Poulain <[email protected]> | |
+ | |
+ Add the symbol WTFInvokeCrashHook back for binary compatibility. | |
+ | |
+ Reviewed by NOBODY (OOPS!). | |
+ | |
+ * wtf/Assertions.cpp: | |
+ * wtf/Assertions.h: | |
+ | |
2013-05-16 Seokju Kwon <[email protected]> | |
[CMAKE] Need to set WTF_LIBRARIES in wtf/CMakeLists.txt | |
Index: Source/WTF/wtf/Assertions.cpp | |
=================================================================== | |
--- Source/WTF/wtf/Assertions.cpp (revision 150196) | |
+++ Source/WTF/wtf/Assertions.cpp (working copy) | |
@@ -326,6 +326,10 @@ | |
globalHook = function; | |
} | |
+void WTFInvokeCrashHook() | |
+{ | |
+} | |
+ | |
void WTFCrash() | |
{ | |
if (globalHook) | |
Index: Source/WTF/wtf/Assertions.h | |
=================================================================== | |
--- Source/WTF/wtf/Assertions.h (revision 150196) | |
+++ Source/WTF/wtf/Assertions.h (working copy) | |
@@ -125,6 +125,8 @@ | |
WTF_EXPORT_PRIVATE void WTFSetCrashHook(WTFCrashHookFunction); | |
WTF_EXPORT_PRIVATE void WTFInstallReportBacktraceOnCrashHook(); | |
+// Exist for binary compatibility with older Safari. Do not use. | |
+WTF_EXPORT_PRIVATE void WTFInvokeCrashHook(); | |
#ifdef __cplusplus | |
} | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment