Title: [221278] trunk/Source/WebKitLegacy/win
Revision
221278
Author
[email protected]
Date
2017-08-28 15:46:02 -0700 (Mon, 28 Aug 2017)

Log Message

Unreviewed build fix after r221275.

* WebCoreSupport/WebPlatformStrategies.cpp:
(WebPlatformStrategies::cookieRequestHeaderFieldValue): Correct return type and arguments
to match new API.

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/win/ChangeLog (221277 => 221278)


--- trunk/Source/WebKitLegacy/win/ChangeLog	2017-08-28 22:38:13 UTC (rev 221277)
+++ trunk/Source/WebKitLegacy/win/ChangeLog	2017-08-28 22:46:02 UTC (rev 221278)
@@ -1,3 +1,11 @@
+2017-08-28  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix after r221275.
+
+        * WebCoreSupport/WebPlatformStrategies.cpp:
+        (WebPlatformStrategies::cookieRequestHeaderFieldValue): Correct return type and arguments
+        to match new API.
+
 2017-08-28  Per Arne Vollan  <[email protected]>
 
         [Win] The test http/tests/misc/policy-delegate-called-twice.html is crashing.

Modified: trunk/Source/WebKitLegacy/win/WebCoreSupport/WebPlatformStrategies.cpp (221277 => 221278)


--- trunk/Source/WebKitLegacy/win/WebCoreSupport/WebPlatformStrategies.cpp	2017-08-28 22:38:13 UTC (rev 221277)
+++ trunk/Source/WebKitLegacy/win/WebCoreSupport/WebPlatformStrategies.cpp	2017-08-28 22:46:02 UTC (rev 221278)
@@ -85,9 +85,9 @@
     return WebCore::cookiesEnabled(session, firstParty, url);
 }
 
-String WebPlatformStrategies::cookieRequestHeaderFieldValue(const NetworkStorageSession& session, const URL& firstParty, const URL& url)
+std::pair<String, bool> WebPlatformStrategies::cookieRequestHeaderFieldValue(const NetworkStorageSession& session, const URL& firstParty, const URL& url, WebCore::IncludeSecureCookies includeSecureCookies)
 {
-    return WebCore::cookieRequestHeaderFieldValue(session, firstParty, url);
+    return WebCore::cookieRequestHeaderFieldValue(session, firstParty, url, includeSecureCookies);
 }
 
 String WebPlatformStrategies::cookieRequestHeaderFieldValue(PAL::SessionID sessionID, const URL& firstParty, const URL& url)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to