Title: [189033] trunk/Source/WTF
Revision
189033
Author
[email protected]
Date
2015-08-27 10:40:56 -0700 (Thu, 27 Aug 2015)

Log Message

Define legacy main thread calling functions for iOS as well
https://bugs.webkit.org/show_bug.cgi?id=148530

Reviewed by Tim Horton.

* wtf/mac/DeprecatedSymbolsUsedBySafari.mm:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (189032 => 189033)


--- trunk/Source/WTF/ChangeLog	2015-08-27 17:37:22 UTC (rev 189032)
+++ trunk/Source/WTF/ChangeLog	2015-08-27 17:40:56 UTC (rev 189033)
@@ -1,3 +1,12 @@
+2015-08-27  Anders Carlsson  <[email protected]>
+
+        Define legacy main thread calling functions for iOS as well
+        https://bugs.webkit.org/show_bug.cgi?id=148530
+
+        Reviewed by Tim Horton.
+
+        * wtf/mac/DeprecatedSymbolsUsedBySafari.mm:
+
 2015-08-26  Anders Carlsson  <[email protected]>
 
         Fix build.

Modified: trunk/Source/WTF/wtf/mac/DeprecatedSymbolsUsedBySafari.mm (189032 => 189033)


--- trunk/Source/WTF/wtf/mac/DeprecatedSymbolsUsedBySafari.mm	2015-08-27 17:37:22 UTC (rev 189032)
+++ trunk/Source/WTF/wtf/mac/DeprecatedSymbolsUsedBySafari.mm	2015-08-27 17:40:56 UTC (rev 189033)
@@ -62,7 +62,7 @@
     atomicallyInitializedStaticMutex.unlock();
 }
 
-#if __MAC_OS_X_VERSION_MIN_REQUIRED <= 101100
+#if !((PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED > 101100) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED > 90000))
 WTF_EXPORT_PRIVATE void callOnMainThread(void (*function)(void*), void* context);
 WTF_EXPORT_PRIVATE void cancelCallOnMainThread(void (*function)(void*), void* context);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to