Title: [258782] trunk/Source/WebKitLegacy/mac
Revision
258782
Author
[email protected]
Date
2020-03-20 13:16:38 -0700 (Fri, 20 Mar 2020)

Log Message

Improve the previous build fix.

* WebCoreSupport/WebFrameLoaderClient.mm:
Darin points out that we have USE(WEB_THREAD), so might as well use it!

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (258781 => 258782)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2020-03-20 20:04:30 UTC (rev 258781)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2020-03-20 20:16:38 UTC (rev 258782)
@@ -1,5 +1,12 @@
 2020-03-20  Timothy Horton  <[email protected]>
 
+        Improve the previous build fix.
+
+        * WebCoreSupport/WebFrameLoaderClient.mm:
+        Darin points out that we have USE(WEB_THREAD), so might as well use it!
+
+2020-03-20  Timothy Horton  <[email protected]>
+
         Fix the build.
 
         * WebCoreSupport/WebFrameLoaderClient.mm:

Modified: trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebFrameLoaderClient.mm (258781 => 258782)


--- trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebFrameLoaderClient.mm	2020-03-20 20:04:30 UTC (rev 258781)
+++ trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebFrameLoaderClient.mm	2020-03-20 20:16:38 UTC (rev 258782)
@@ -2440,7 +2440,7 @@
 #if HAVE(APP_LINKS)
     if (_appLinkURL && _frame) {
         [LSAppLink openWithURL:_appLinkURL.get() completionHandler:^(BOOL success, NSError *) {
-#if PLATFORM(IOS_FAMILY)
+#if USE(WEB_THREAD)
             WebThreadRun(^{
 #else
             dispatch_async(dispatch_get_main_queue(), ^{
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to