Title: [250247] trunk/Source/WebCore
Revision
250247
Author
krol...@apple.com
Date
2019-09-23 12:15:37 -0700 (Mon, 23 Sep 2019)

Log Message

Unreviewed build fix after r250173: tvOS build broken due to unused function.

* platform/network/cocoa/CookieCocoa.mm:
(WebCore::Cookie::operator NSHTTPCookie * _Nullable  const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (250246 => 250247)


--- trunk/Source/WebCore/ChangeLog	2019-09-23 18:38:35 UTC (rev 250246)
+++ trunk/Source/WebCore/ChangeLog	2019-09-23 19:15:37 UTC (rev 250247)
@@ -1,3 +1,10 @@
+2019-09-23  Keith Rollin  <krol...@apple.com>
+
+        Unreviewed build fix after r250173: tvOS build broken due to unused function.
+
+        * platform/network/cocoa/CookieCocoa.mm:
+        (WebCore::Cookie::operator NSHTTPCookie * _Nullable  const):
+
 2019-09-23  Brent Fulgham  <bfulg...@apple.com>
 
         Unreviewed WinCairo/FTW Build fix after r250192.

Modified: trunk/Source/WebCore/platform/network/cocoa/CookieCocoa.mm (250246 => 250247)


--- trunk/Source/WebCore/platform/network/cocoa/CookieCocoa.mm	2019-09-23 18:38:35 UTC (rev 250246)
+++ trunk/Source/WebCore/platform/network/cocoa/CookieCocoa.mm	2019-09-23 19:15:37 UTC (rev 250247)
@@ -183,7 +183,7 @@
     if (httpOnly)
         [properties setObject:@YES forKey:@"HttpOnly"];
 
-#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400) || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 120000)
+#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400) || PLATFORM(IOS_FAMILY)
     if (auto* sameSitePolicy = nsSameSitePolicy(sameSite))
         [properties setObject:sameSitePolicy forKey:@"SameSite"];
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to