Title: [293272] branches/safari-613.2.7.1-branch/Source
Revision
293272
Author
[email protected]
Date
2022-04-22 17:37:36 -0700 (Fri, 22 Apr 2022)

Log Message

Revert "Apply patch. rdar://problem/90968687"

This reverts commit r293271.

Modified Paths

Diff

Modified: branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp (293271 => 293272)


--- branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2022-04-23 00:06:36 UTC (rev 293271)
+++ branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2022-04-23 00:37:36 UTC (rev 293272)
@@ -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(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
+        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(cfIdentifier.get());
 
     if (NetworkStorageSession::processMayUseCookieAPI()) {
         ASSERT(hasProcessPrivilege(ProcessPrivilege::CanAccessRawCookies));

Modified: branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp (293271 => 293272)


--- branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp	2022-04-23 00:06:36 UTC (rev 293271)
+++ branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp	2022-04-23 00:37:36 UTC (rev 293272)
@@ -90,7 +90,7 @@
     if (sessionID.isEphemeral())
         storageSession = WebCore::createPrivateStorageSession(identifier.get());
     else
-        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get());
+        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
 
     RetainPtr<CFHTTPCookieStorageRef> cookieStorage;
     if (WebCore::NetworkStorageSession::processMayUseCookieAPI()) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to