Title: [293271] branches/safari-613.2.7.1-branch/Source
- Revision
- 293271
- Author
- [email protected]
- Date
- 2022-04-22 17:06:36 -0700 (Fri, 22 Apr 2022)
Log Message
Apply patch. rdar://problem/90968687
Modified Paths
Diff
Modified: branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp (293270 => 293271)
--- branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2022-04-23 00:04:16 UTC (rev 293270)
+++ branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2022-04-23 00:06:36 UTC (rev 293271)
@@ -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.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp (293270 => 293271)
--- branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp 2022-04-23 00:04:16 UTC (rev 293270)
+++ branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp 2022-04-23 00:06:36 UTC (rev 293271)
@@ -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