WebContent: Add missing includes on Windows

After header cleanup there were some includes missing when compiling for
windows not affecting other platforms because of ifdefs.
This commit is contained in:
R-Goc 2025-12-04 21:43:33 +01:00 committed by Tim Flynn
parent b9f1c7084b
commit f2bf643558
Notes: github-actions[bot] 2025-12-05 12:08:48 +00:00
2 changed files with 2 additions and 0 deletions

View file

@ -12,6 +12,7 @@
#include <AK/JsonObject.h> #include <AK/JsonObject.h>
#include <AK/QuickSort.h> #include <AK/QuickSort.h>
#include <LibCore/EventLoop.h> #include <LibCore/EventLoop.h>
#include <LibCore/System.h>
#include <LibGC/Heap.h> #include <LibGC/Heap.h>
#include <LibGfx/Bitmap.h> #include <LibGfx/Bitmap.h>
#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/Font/FontDatabase.h>

View file

@ -10,6 +10,7 @@
#include <LibCore/LocalServer.h> #include <LibCore/LocalServer.h>
#include <LibCore/Process.h> #include <LibCore/Process.h>
#include <LibCore/Resource.h> #include <LibCore/Resource.h>
#include <LibCore/System.h>
#include <LibCore/SystemServerTakeover.h> #include <LibCore/SystemServerTakeover.h>
#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/Font/FontDatabase.h>
#include <LibGfx/Font/PathFontProvider.h> #include <LibGfx/Font/PathFontProvider.h>