Title: [213785] trunk/Source/WebCore
Revision
213785
Author
[email protected]
Date
2017-03-13 00:33:22 -0700 (Mon, 13 Mar 2017)

Log Message

Unreviewed GTK+ build fix. Adjust the Cookie constructor
invocation in CookieJarSoup, using empty values for the
newly-added parameters. This should probably be revised
to determine whether meaningful values can be passed in.

* platform/network/soup/CookieJarSoup.cpp:
(WebCore::getRawCookies):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (213784 => 213785)


--- trunk/Source/WebCore/ChangeLog	2017-03-13 07:30:14 UTC (rev 213784)
+++ trunk/Source/WebCore/ChangeLog	2017-03-13 07:33:22 UTC (rev 213785)
@@ -1,3 +1,13 @@
+2017-03-13  Zan Dobersek  <[email protected]>
+
+        Unreviewed GTK+ build fix. Adjust the Cookie constructor
+        invocation in CookieJarSoup, using empty values for the
+        newly-added parameters. This should probably be revised
+        to determine whether meaningful values can be passed in.
+
+        * platform/network/soup/CookieJarSoup.cpp:
+        (WebCore::getRawCookies):
+
 2017-03-13  Jon Lee  <[email protected]>
 
         WebGPU: Backend - hosting WebGPU layers

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


--- trunk/Source/WebCore/platform/network/soup/CookieJarSoup.cpp	2017-03-13 07:30:14 UTC (rev 213784)
+++ trunk/Source/WebCore/platform/network/soup/CookieJarSoup.cpp	2017-03-13 07:33:22 UTC (rev 213785)
@@ -116,7 +116,7 @@
         SoupCookie* cookie = static_cast<SoupCookie*>(iter->data);
         rawCookies.append(Cookie(String::fromUTF8(cookie->name), String::fromUTF8(cookie->value), String::fromUTF8(cookie->domain),
             String::fromUTF8(cookie->path), cookie->expires ? static_cast<double>(soup_date_to_time_t(cookie->expires)) * 1000 : 0,
-            cookie->http_only, cookie->secure, !cookie->expires));
+            cookie->http_only, cookie->secure, !cookie->expires, String(), URL(), Vector<uint16_t>{ }));
         soup_cookie_free(cookie);
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to