Title: [221056] trunk/Source/WebCore
Revision
221056
Author
[email protected]
Date
2017-08-22 16:46:29 -0700 (Tue, 22 Aug 2017)

Log Message

Correct SOUP builds after r221017 and r221050.
https://bugs.webkit.org/show_bug.cgi?id=175846

Reviewed by Michael Catanzaro.

* platform/network/soup/CookieJarSoup.cpp:
(WebCore::cookiesForDOM): Revise return type.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (221055 => 221056)


--- trunk/Source/WebCore/ChangeLog	2017-08-22 23:15:05 UTC (rev 221055)
+++ trunk/Source/WebCore/ChangeLog	2017-08-22 23:46:29 UTC (rev 221056)
@@ -1,5 +1,15 @@
 2017-08-22  Brent Fulgham  <[email protected]>
 
+        Correct SOUP builds after r221017 and r221050.
+        https://bugs.webkit.org/show_bug.cgi?id=175846
+
+        Reviewed by Michael Catanzaro.
+
+        * platform/network/soup/CookieJarSoup.cpp:
+        (WebCore::cookiesForDOM): Revise return type.
+
+2017-08-22  Brent Fulgham  <[email protected]>
+
         Correct SOUP and cURL builds after r221017.
         https://bugs.webkit.org/show_bug.cgi?id=175846
 

Modified: trunk/Source/WebCore/platform/network/soup/CookieJarSoup.cpp (221055 => 221056)


--- trunk/Source/WebCore/platform/network/soup/CookieJarSoup.cpp	2017-08-22 23:15:05 UTC (rev 221055)
+++ trunk/Source/WebCore/platform/network/soup/CookieJarSoup.cpp	2017-08-22 23:46:29 UTC (rev 221056)
@@ -90,8 +90,8 @@
 
 std::pair<String, bool> cookiesForDOM(const NetworkStorageSession& session, const URL&, const URL& url, IncludeSecureCookies)
 {
-    // FIXME: SOUP concept of secure cookies should be filtered here.
-    return cookiesForSession(session, url, false);
+    // FIXME(175850): SOUP concept of secure cookies should be filtered here.
+    return { cookiesForSession(session, url, false), false };
 }
 
 String cookieRequestHeaderFieldValue(const NetworkStorageSession& session, const URL& /*firstParty*/, const URL& url)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to