Title: [258283] trunk/Source
Revision
258283
Author
achristen...@apple.com
Date
2020-03-11 14:02:10 -0700 (Wed, 11 Mar 2020)

Log Message

Enable safe browsing warnings in Mac Catalyst WebKit
https://bugs.webkit.org/show_bug.cgi?id=208944
<rdar://problem/58854302>

Reviewed by Tim Horton.

Source/WebKit:

I manually verified using the steps in the radar that it works as one would hope.

* Configurations/WebKit.xcconfig:

Source/WTF:

* wtf/PlatformHave.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (258282 => 258283)


--- trunk/Source/WTF/ChangeLog	2020-03-11 21:00:17 UTC (rev 258282)
+++ trunk/Source/WTF/ChangeLog	2020-03-11 21:02:10 UTC (rev 258283)
@@ -1,3 +1,13 @@
+2020-03-11  Alex Christensen  <achristen...@webkit.org>
+
+        Enable safe browsing warnings in Mac Catalyst WebKit
+        https://bugs.webkit.org/show_bug.cgi?id=208944
+        <rdar://problem/58854302>
+
+        Reviewed by Tim Horton.
+
+        * wtf/PlatformHave.h:
+
 2020-03-09  Megan Gardner  <megan_gard...@apple.com>
 
         Build Fix

Modified: trunk/Source/WTF/wtf/PlatformHave.h (258282 => 258283)


--- trunk/Source/WTF/wtf/PlatformHave.h	2020-03-11 21:00:17 UTC (rev 258282)
+++ trunk/Source/WTF/wtf/PlatformHave.h	2020-03-11 21:02:10 UTC (rev 258283)
@@ -408,7 +408,7 @@
 #define HAVE_SAFARI_SERVICES_FRAMEWORK 1
 #endif
 
-#if PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(WATCHOS)
+#if PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(WATCHOS) || PLATFORM(MACCATALYST)
 #define HAVE_SAFE_BROWSING 1
 #endif
 

Modified: trunk/Source/WebKit/ChangeLog (258282 => 258283)


--- trunk/Source/WebKit/ChangeLog	2020-03-11 21:00:17 UTC (rev 258282)
+++ trunk/Source/WebKit/ChangeLog	2020-03-11 21:02:10 UTC (rev 258283)
@@ -1,5 +1,17 @@
 2020-03-11  Alex Christensen  <achristen...@webkit.org>
 
+        Enable safe browsing warnings in Mac Catalyst WebKit
+        https://bugs.webkit.org/show_bug.cgi?id=208944
+        <rdar://problem/58854302>
+
+        Reviewed by Tim Horton.
+
+        I manually verified using the steps in the radar that it works as one would hope.
+
+        * Configurations/WebKit.xcconfig:
+
+2020-03-11  Alex Christensen  <achristen...@webkit.org>
+
         Fix the macCatalyst build after r258250
 
         * WebProcess/WebPage/Cocoa/TextCheckingControllerProxy.mm:

Modified: trunk/Source/WebKit/Configurations/WebKit.xcconfig (258282 => 258283)


--- trunk/Source/WebKit/Configurations/WebKit.xcconfig	2020-03-11 21:00:17 UTC (rev 258282)
+++ trunk/Source/WebKit/Configurations/WebKit.xcconfig	2020-03-11 21:02:10 UTC (rev 258283)
@@ -102,6 +102,7 @@
 WK_SAFE_BROWSING_LDFLAGS_iphonesimulator[sdk=iphone*10.*] = ;
 WK_SAFE_BROWSING_LDFLAGS_watchos = -framework SafariSafeBrowsing;
 WK_SAFE_BROWSING_LDFLAGS_watchsimulator = -framework SafariSafeBrowsing;
+WK_SAFE_BROWSING_LDFLAGS_maccatalyst = -framework SafariSafeBrowsing;
 WK_SAFE_BROWSING_LDFLAGS_macosx = -weak_framework SafariSafeBrowsing;
 
 WK_SECURITY_INTERFACE_LDFLAGS = $(WK_SECURITY_INTERFACE_LDFLAGS_$(WK_PLATFORM_NAME));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to