⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 293282 in webkit


Ignore:
Timestamp:
Apr 22, 2022, 7:58:07 PM (4 years ago)
Author:
Russell Epstein
Message:

Apply patch. rdar://problem/90968687

Location:
branches/safari-613.2.7.1-branch/Source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-613.2.7.1-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp

    r293272 r293282  
    480480        storageSession = createPrivateStorageSession(cfIdentifier.get(), std::nullopt, WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
    481481    else if (sessionID != PAL::SessionID::defaultSessionID())
    482         storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(cfIdentifier.get());
     482        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(cfIdentifier.get(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
    483483
    484484    if (NetworkStorageSession::processMayUseCookieAPI()) {
  • branches/safari-613.2.7.1-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp

    r293272 r293282  
    9191        storageSession = WebCore::createPrivateStorageSession(identifier.get());
    9292    else
    93         storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
     93        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get());
    9494
    9595    RetainPtr<CFHTTPCookieStorageRef> cookieStorage;
Note: See TracChangeset for help on using the changeset viewer.