Title: [245862] trunk/Source/WebKitLegacy/mac
Revision
245862
Author
[email protected]
Date
2019-05-29 12:37:14 -0700 (Wed, 29 May 2019)

Log Message

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

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (245861 => 245862)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2019-05-29 19:16:35 UTC (rev 245861)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2019-05-29 19:37:14 UTC (rev 245862)
@@ -1,3 +1,14 @@
+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: trunk/Source/WebKitLegacy/mac/Misc/WebDownload.h (245861 => 245862)


--- trunk/Source/WebKitLegacy/mac/Misc/WebDownload.h	2019-05-29 19:16:35 UTC (rev 245861)
+++ trunk/Source/WebKitLegacy/mac/Misc/WebDownload.h	2019-05-29 19:37:14 UTC (rev 245862)
@@ -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