Skip to content

Instantly share code, notes, and snippets.

@BenjaminPoulain
Created May 17, 2013 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenjaminPoulain/5596295 to your computer and use it in GitHub Desktop.
Save BenjaminPoulain/5596295 to your computer and use it in GitHub Desktop.
Index: Source/WTF/ChangeLog
===================================================================
--- Source/WTF/ChangeLog (revision 150227)
+++ Source/WTF/ChangeLog (working copy)
@@ -1,3 +1,12 @@
+2013-05-16 Benjamin Poulain <bpoulain@apple.com>
+
+ Add the symbol WTFInvokeCrashHook back for binary compatibility.
+
+ Reviewed by NOBODY (OOPS!).
+
+ * wtf/Assertions.cpp:
+ * wtf/Assertions.h:
+
2013-05-16 Seokju Kwon <seokju.kwon@gmail.com>
[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