Changeset 240345 in webkit


Ignore:
Timestamp:
Jan 23, 2019 10:39:37 AM (5 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r240292): Attempt to fix WinCairo build

  • platform/network/curl/CurlResourceHandleDelegate.cpp:

(WebCore::handleCookieHeaders): Remove argument to
NetworkingContext::storageSession().

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r240342 r240345  
     12019-01-23  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r240292): Attempt to fix WinCairo build
     4
     5        * platform/network/curl/CurlResourceHandleDelegate.cpp:
     6        (WebCore::handleCookieHeaders): Remove argument to
     7        NetworkingContext::storageSession().
     8
    192019-01-23  Wenson Hsieh  <wenson_hsieh@apple.com>
    210
  • trunk/Source/WebCore/platform/network/curl/CurlResourceHandleDelegate.cpp

    r240297 r240345  
    9090    static const auto setCookieHeader = "set-cookie: ";
    9191
    92     const auto& storageSession = *d->m_context->storageSession(PAL::SessionID::defaultSessionID());
     92    const auto& storageSession = *d->m_context->storageSession();
    9393    const auto& cookieJar = storageSession.cookieStorage();
    9494    for (const auto& header : response.headers) {
Note: See TracChangeset for help on using the changeset viewer.