Title: [290106] trunk/Source/WebKit
Revision
290106
Author
[email protected]
Date
2022-02-17 19:31:39 -0800 (Thu, 17 Feb 2022)

Log Message

[GTK] Debian Stable build is broken after r290026
https://bugs.webkit.org/show_bug.cgi?id=236819

Unreviewed build fix.


* UIProcess/API/APIWebsitePolicies.cpp:
(API::WebsitePolicies::copy const):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (290105 => 290106)


--- trunk/Source/WebKit/ChangeLog	2022-02-18 02:51:32 UTC (rev 290105)
+++ trunk/Source/WebKit/ChangeLog	2022-02-18 03:31:39 UTC (rev 290106)
@@ -1,3 +1,13 @@
+2022-02-17  Diego Pino Garcia  <[email protected]>
+
+        [GTK] Debian Stable build is broken after r290026
+        https://bugs.webkit.org/show_bug.cgi?id=236819
+
+        Unreviewed build fix.
+
+        * UIProcess/API/APIWebsitePolicies.cpp:
+        (API::WebsitePolicies::copy const):
+
 2022-02-17  Kate Cheney  <[email protected]>
 
         Refactor share menu item presentation

Modified: trunk/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp (290105 => 290106)


--- trunk/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp	2022-02-18 02:51:32 UTC (rev 290105)
+++ trunk/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp	2022-02-18 03:31:39 UTC (rev 290106)
@@ -59,8 +59,8 @@
     policies->setWebsiteDataStore(m_websiteDataStore.get());
     policies->setUserContentController(m_userContentController.get());
     policies->setIdempotentModeAutosizingOnlyHonorsPercentages(m_idempotentModeAutosizingOnlyHonorsPercentages);
-    policies->setLegacyCustomHeaderFields(Vector { m_legacyCustomHeaderFields });
-    policies->setCustomHeaderFields(Vector { m_customHeaderFields });
+    policies->setLegacyCustomHeaderFields(Vector<WebCore::HTTPHeaderField> { m_legacyCustomHeaderFields });
+    policies->setCustomHeaderFields(Vector<WebCore::CustomHeaderFields> { m_customHeaderFields });
     policies->setAllowSiteSpecificQuirksToOverrideContentMode(m_allowSiteSpecificQuirksToOverrideContentMode);
     policies->setApplicationNameForDesktopUserAgent(m_applicationNameForDesktopUserAgent);
     policies->setAllowsContentJavaScript(m_allowsContentJavaScript);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to