Title: [254374] trunk/Source/WebCore
Revision
254374
Author
wilan...@apple.com
Date
2020-01-10 15:48:24 -0800 (Fri, 10 Jan 2020)

Log Message

Resource Load Statistics: Align WebCore::NetworkStorageSession's m_thirdPartyCookieBlockingMode init value with r254239
https://bugs.webkit.org/show_bug.cgi?id=206082
<rdar://problem/58487498>

Unreviewed minor, follow-up fix.


* platform/network/NetworkStorageSession.h:
    The init value of m_thirdPartyCookieBlockingMode was changed to
    ThirdPartyCookieBlockingMode::All to align it with r254239.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (254373 => 254374)


--- trunk/Source/WebCore/ChangeLog	2020-01-10 23:39:54 UTC (rev 254373)
+++ trunk/Source/WebCore/ChangeLog	2020-01-10 23:48:24 UTC (rev 254374)
@@ -1,3 +1,15 @@
+2020-01-10  John Wilander  <wilan...@apple.com>
+
+        Resource Load Statistics: Align WebCore::NetworkStorageSession's m_thirdPartyCookieBlockingMode init value with r254239
+        https://bugs.webkit.org/show_bug.cgi?id=206082
+        <rdar://problem/58487498>
+
+        Unreviewed minor, follow-up fix.
+
+        * platform/network/NetworkStorageSession.h:
+            The init value of m_thirdPartyCookieBlockingMode was changed to
+            ThirdPartyCookieBlockingMode::All to align it with r254239.
+
 2020-01-09  Per Arne Vollan  <pvol...@apple.com>
 
         Map CSS value ID to system color in the UI process

Modified: trunk/Source/WebCore/platform/network/NetworkStorageSession.h (254373 => 254374)


--- trunk/Source/WebCore/platform/network/NetworkStorageSession.h	2020-01-10 23:39:54 UTC (rev 254373)
+++ trunk/Source/WebCore/platform/network/NetworkStorageSession.h	2020-01-10 23:48:24 UTC (rev 254374)
@@ -203,7 +203,7 @@
     Optional<Seconds> m_ageCapForClientSideCookiesShort { };
     HashMap<WebCore::PageIdentifier, RegistrableDomain> m_navigatedToWithLinkDecorationByPrevalentResource;
     bool m_navigationWithLinkDecorationTestMode = false;
-    ThirdPartyCookieBlockingMode m_thirdPartyCookieBlockingMode { ThirdPartyCookieBlockingMode::AllOnSitesWithoutUserInteraction };
+    ThirdPartyCookieBlockingMode m_thirdPartyCookieBlockingMode { ThirdPartyCookieBlockingMode::All };
 #endif
 
 #if PLATFORM(COCOA)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to