Title: [295474] trunk/Source
Revision
295474
Author
ape...@igalia.com
Date
2022-06-11 08:11:57 -0700 (Sat, 11 Jun 2022)

Log Message

Non-unified build fixes, pre- Web Engines Hackfest edition
https://bugs.webkit.org/show_bug.cgi?id=241532

Unreviewed non-unified build fixes.

* Source/WebCore/platform/graphics/filters/FilterResults.cpp: Add
  missing ImageBuffer.h header inclusion.
* Source/WebCore/platform/graphics/gtk/SystemFontDatabaseGTK.cpp: Add
  missing inclusion of headers PlatformScreen.h, <gtk/gtk.h>, and
  wtf/glib/GUniquePtr.h.
* Source/WebKit/NetworkProcess/Cookies/WebCookieManager.cpp: Add missing
  NetworkProcessProxyMessages.h header inclusion.

Canonical link: https://commits.webkit.org/251479@main

Modified Paths

Diff

Modified: trunk/Source/WebCore/platform/graphics/filters/FilterResults.cpp (295473 => 295474)


--- trunk/Source/WebCore/platform/graphics/filters/FilterResults.cpp	2022-06-11 06:23:41 UTC (rev 295473)
+++ trunk/Source/WebCore/platform/graphics/filters/FilterResults.cpp	2022-06-11 15:11:57 UTC (rev 295474)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "FilterResults.h"
 
+#include "ImageBuffer.h"
+
 namespace WebCore {
 
 FilterResults::FilterResults(std::unique_ptr<ImageBufferAllocator>&& allocator)

Modified: trunk/Source/WebCore/platform/graphics/gtk/SystemFontDatabaseGTK.cpp (295473 => 295474)


--- trunk/Source/WebCore/platform/graphics/gtk/SystemFontDatabaseGTK.cpp	2022-06-11 06:23:41 UTC (rev 295473)
+++ trunk/Source/WebCore/platform/graphics/gtk/SystemFontDatabaseGTK.cpp	2022-06-11 15:11:57 UTC (rev 295474)
@@ -22,8 +22,11 @@
 #include "config.h"
 #include "SystemFontDatabase.h"
 
+#include "PlatformScreen.h"
 #include "WebKitFontFamilyNames.h"
+#include <gtk/gtk.h>
 #include <wtf/NeverDestroyed.h>
+#include <wtf/glib/GUniquePtr.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebKit/NetworkProcess/Cookies/WebCookieManager.cpp (295473 => 295474)


--- trunk/Source/WebKit/NetworkProcess/Cookies/WebCookieManager.cpp	2022-06-11 06:23:41 UTC (rev 295473)
+++ trunk/Source/WebKit/NetworkProcess/Cookies/WebCookieManager.cpp	2022-06-11 15:11:57 UTC (rev 295474)
@@ -27,6 +27,7 @@
 #include "WebCookieManager.h"
 
 #include "NetworkProcess.h"
+#include "NetworkProcessProxyMessages.h"
 #include "WebCookieManagerMessages.h"
 #include "WebCoreArgumentCoders.h"
 #include <WebCore/Cookie.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to