Title: [239713] branches/safari-606.4.5.2-branch/Source/WebCore
Revision
239713
Author
[email protected]
Date
2019-01-07 16:09:26 -0800 (Mon, 07 Jan 2019)

Log Message

Apply patch. rdar://problem/46941524

Modified Paths


Diff

Modified: branches/safari-606.4.5.2-branch/Source/WebCore/ChangeLog (239712 => 239713)


--- branches/safari-606.4.5.2-branch/Source/WebCore/ChangeLog	2019-01-08 00:05:03 UTC (rev 239712)
+++ branches/safari-606.4.5.2-branch/Source/WebCore/ChangeLog	2019-01-08 00:09:26 UTC (rev 239713)
@@ -1,3 +1,16 @@
+2019-01-07  Alan Coon  <[email protected]>
+
+        Apply patch. rdar://problem/46941524
+
+    2019-01-07  Per Arne Vollan  <[email protected]>
+
+            [Win] Compile error: 'setAgeCapForClientSideCookies': is not a member of 'WebCore::NetworkStorageSession
+            https://bugs.webkit.org/show_bug.cgi?id=193203
+
+            Protect implementation with same macro protecting the declaration of the method.
+
+            * platform/network/NetworkStorageSession.cpp:
+
 2018-12-19  Alan Coon  <[email protected]>
 
         Apply patch. rdar://problem/46848447

Modified: branches/safari-606.4.5.2-branch/Source/WebCore/platform/network/NetworkStorageSession.cpp (239712 => 239713)


--- branches/safari-606.4.5.2-branch/Source/WebCore/platform/network/NetworkStorageSession.cpp	2019-01-08 00:05:03 UTC (rev 239712)
+++ branches/safari-606.4.5.2-branch/Source/WebCore/platform/network/NetworkStorageSession.cpp	2019-01-08 00:09:26 UTC (rev 239713)
@@ -74,6 +74,7 @@
         removeProcessPrivilege(ProcessPrivilege::CanAccessRawCookies);
 }
 
+#if HAVE(CFNETWORK_STORAGE_PARTITIONING)
 void NetworkStorageSession::setAgeCapForClientSideCookies(std::optional<Seconds> seconds)
 {
     m_ageCapForClientSideCookies = seconds;
@@ -83,5 +84,6 @@
 {
     return m_ageCapForClientSideCookies;
 }
+#endif
 
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to