Title: [254614] branches/safari-609-branch/Source/WebCore
Revision
254614
Author
alanc...@apple.com
Date
2020-01-15 11:15:58 -0800 (Wed, 15 Jan 2020)

Log Message

Cherry-pick r254374. rdar://problem/58549092

    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.

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@254374 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-609-branch/Source/WebCore/ChangeLog (254613 => 254614)


--- branches/safari-609-branch/Source/WebCore/ChangeLog	2020-01-15 19:15:55 UTC (rev 254613)
+++ branches/safari-609-branch/Source/WebCore/ChangeLog	2020-01-15 19:15:58 UTC (rev 254614)
@@ -1,5 +1,35 @@
 2020-01-14  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r254374. rdar://problem/58549092
+
+    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.
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@254374 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-14  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r254322. rdar://problem/58549088
 
     Block cross-site top-frame navigations from untrusted iframes

Modified: branches/safari-609-branch/Source/WebCore/platform/network/NetworkStorageSession.h (254613 => 254614)


--- branches/safari-609-branch/Source/WebCore/platform/network/NetworkStorageSession.h	2020-01-15 19:15:55 UTC (rev 254613)
+++ branches/safari-609-branch/Source/WebCore/platform/network/NetworkStorageSession.h	2020-01-15 19:15:58 UTC (rev 254614)
@@ -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