Title: [293256] branches/safari-613.2.7.0-branch/Source
- Revision
- 293256
- Author
- [email protected]
- Date
- 2022-04-22 14:56:09 -0700 (Fri, 22 Apr 2022)
Log Message
Apply patch. rdar://problem/90968687
Modified Paths
Diff
Modified: branches/safari-613.2.7.0-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp (293255 => 293256)
--- branches/safari-613.2.7.0-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2022-04-22 21:53:47 UTC (rev 293255)
+++ branches/safari-613.2.7.0-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2022-04-22 21:56:09 UTC (rev 293256)
@@ -479,7 +479,7 @@
if (sessionID.isEphemeral())
storageSession = createPrivateStorageSession(cfIdentifier.get(), std::nullopt, WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
else if (sessionID != PAL::SessionID::defaultSessionID())
- storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(cfIdentifier.get());
+ storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(cfIdentifier.get(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
if (NetworkStorageSession::processMayUseCookieAPI()) {
ASSERT(hasProcessPrivilege(ProcessPrivilege::CanAccessRawCookies));
Modified: branches/safari-613.2.7.0-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp (293255 => 293256)
--- branches/safari-613.2.7.0-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp 2022-04-22 21:53:47 UTC (rev 293255)
+++ branches/safari-613.2.7.0-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp 2022-04-22 21:56:09 UTC (rev 293256)
@@ -90,7 +90,7 @@
if (sessionID.isEphemeral())
storageSession = WebCore::createPrivateStorageSession(identifier.get());
else
- storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
+ storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get());
RetainPtr<CFHTTPCookieStorageRef> cookieStorage;
if (WebCore::NetworkStorageSession::processMayUseCookieAPI()) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes