Title: [293282] branches/safari-613.2.7.1-branch/Source
- Revision
- 293282
- Author
- [email protected]
- Date
- 2022-04-22 19:58:07 -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 (293281 => 293282)
--- branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2022-04-23 02:54:28 UTC (rev 293281)
+++ branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2022-04-23 02:58:07 UTC (rev 293282)
@@ -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 (293281 => 293282)
--- branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp 2022-04-23 02:54:28 UTC (rev 293281)
+++ branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp 2022-04-23 02:58:07 UTC (rev 293282)
@@ -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