Changeset 254374 in webkit


Ignore:
Timestamp:
Jan 10, 2020 3:48:24 PM (4 years ago)
Author:
wilander@apple.com
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.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r254373 r254374  
     12020-01-10  John Wilander  <wilander@apple.com>
     2
     3        Resource Load Statistics: Align WebCore::NetworkStorageSession's m_thirdPartyCookieBlockingMode init value with r254239
     4        https://bugs.webkit.org/show_bug.cgi?id=206082
     5        <rdar://problem/58487498>
     6
     7        Unreviewed minor, follow-up fix.
     8
     9        * platform/network/NetworkStorageSession.h:
     10            The init value of m_thirdPartyCookieBlockingMode was changed to
     11            ThirdPartyCookieBlockingMode::All to align it with r254239.
     12
    1132020-01-09  Per Arne Vollan  <pvollan@apple.com>
    214
  • trunk/Source/WebCore/platform/network/NetworkStorageSession.h

    r253185 r254374  
    204204    HashMap<WebCore::PageIdentifier, RegistrableDomain> m_navigatedToWithLinkDecorationByPrevalentResource;
    205205    bool m_navigationWithLinkDecorationTestMode = false;
    206     ThirdPartyCookieBlockingMode m_thirdPartyCookieBlockingMode { ThirdPartyCookieBlockingMode::AllOnSitesWithoutUserInteraction };
     206    ThirdPartyCookieBlockingMode m_thirdPartyCookieBlockingMode { ThirdPartyCookieBlockingMode::All };
    207207#endif
    208208
Note: See TracChangeset for help on using the changeset viewer.