Title: [245866] tags/Safari-608.1.26/Source/WebKitLegacy/mac
Revision
245866
Author
[email protected]
Date
2019-05-29 13:45:11 -0700 (Wed, 29 May 2019)

Log Message

Cherry-pick r245862. rdar://problem/51128946

    Fix internal watchOS build
    https://bugs.webkit.org/show_bug.cgi?id=198344
    <rdar://problem/51128965>

    Reviewed by Geoff Garen.

    * Misc/WebDownload.h:
    Fix watchOS like we did iosmac in r245596

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245862 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: tags/Safari-608.1.26/Source/WebKitLegacy/mac/ChangeLog (245865 => 245866)


--- tags/Safari-608.1.26/Source/WebKitLegacy/mac/ChangeLog	2019-05-29 20:29:26 UTC (rev 245865)
+++ tags/Safari-608.1.26/Source/WebKitLegacy/mac/ChangeLog	2019-05-29 20:45:11 UTC (rev 245866)
@@ -1,3 +1,31 @@
+2019-05-29  Kocsen Chung  <[email protected]>
+
+        Cherry-pick r245862. rdar://problem/51128946
+
+    Fix internal watchOS build
+    https://bugs.webkit.org/show_bug.cgi?id=198344
+    <rdar://problem/51128965>
+    
+    Reviewed by Geoff Garen.
+    
+    * Misc/WebDownload.h:
+    Fix watchOS like we did iosmac in r245596
+    
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245862 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-05-29  Alex Christensen  <[email protected]>
+
+            Fix internal watchOS build
+            https://bugs.webkit.org/show_bug.cgi?id=198344
+            <rdar://problem/51128965>
+
+            Reviewed by Geoff Garen.
+
+            * Misc/WebDownload.h:
+            Fix watchOS like we did iosmac in r245596
+
 2019-05-28  Brent Fulgham  <[email protected]>
         Protect frames during style and layout changes
         https://bugs.webkit.org/show_bug.cgi?id=198047

Modified: tags/Safari-608.1.26/Source/WebKitLegacy/mac/Misc/WebDownload.h (245865 => 245866)


--- tags/Safari-608.1.26/Source/WebKitLegacy/mac/Misc/WebDownload.h	2019-05-29 20:29:26 UTC (rev 245865)
+++ tags/Safari-608.1.26/Source/WebKitLegacy/mac/Misc/WebDownload.h	2019-05-29 20:45:11 UTC (rev 245866)
@@ -32,7 +32,7 @@
 #ifndef WebDownload_h
 #define WebDownload_h
 
-#if (defined TARGET_OS_IOSMAC && TARGET_OS_IOSMAC)
+#if (defined TARGET_OS_IOSMAC && TARGET_OS_IOSMAC) || (defined(TARGET_OS_WATCH) && TARGET_OS_WATCH)
 #import <CFNetwork/CFNSURLConnection.h>
 #elif !TARGET_OS_IPHONE || (defined USE_APPLE_INTERNAL_SDK && USE_APPLE_INTERNAL_SDK)
 #import <Foundation/NSURLDownload.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to