Title: [240345] trunk/Source/WebCore
Revision
240345
Author
[email protected]
Date
2019-01-23 10:39:37 -0800 (Wed, 23 Jan 2019)

Log Message

REGRESSION (r240292): Attempt to fix WinCairo build

* platform/network/curl/CurlResourceHandleDelegate.cpp:
(WebCore::handleCookieHeaders): Remove argument to
NetworkingContext::storageSession().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (240344 => 240345)


--- trunk/Source/WebCore/ChangeLog	2019-01-23 18:00:18 UTC (rev 240344)
+++ trunk/Source/WebCore/ChangeLog	2019-01-23 18:39:37 UTC (rev 240345)
@@ -1,3 +1,11 @@
+2019-01-23  David Kilzer  <[email protected]>
+
+        REGRESSION (r240292): Attempt to fix WinCairo build
+
+        * platform/network/curl/CurlResourceHandleDelegate.cpp:
+        (WebCore::handleCookieHeaders): Remove argument to
+        NetworkingContext::storageSession().
+
 2019-01-23  Wenson Hsieh  <[email protected]>
 
         Introduce UndoStep::label() and adopt it in WebKitLegacy and WebKit

Modified: trunk/Source/WebCore/platform/network/curl/CurlResourceHandleDelegate.cpp (240344 => 240345)


--- trunk/Source/WebCore/platform/network/curl/CurlResourceHandleDelegate.cpp	2019-01-23 18:00:18 UTC (rev 240344)
+++ trunk/Source/WebCore/platform/network/curl/CurlResourceHandleDelegate.cpp	2019-01-23 18:39:37 UTC (rev 240345)
@@ -89,7 +89,7 @@
 {
     static const auto setCookieHeader = "set-cookie: ";
 
-    const auto& storageSession = *d->m_context->storageSession(PAL::SessionID::defaultSessionID());
+    const auto& storageSession = *d->m_context->storageSession();
     const auto& cookieJar = storageSession.cookieStorage();
     for (const auto& header : response.headers) {
         if (header.startsWithIgnoringASCIICase(setCookieHeader)) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to