1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

LibWeb: Remove low-hanging LibGUI fruit from LibWeb

We'll want to remove the LibGUI dependency from the WebContent process.
This is the first basic step of removing unnecessary LibGUI includes
and swapping out GUI::Painter for Gfx::Painter.
This commit is contained in:
Andreas Kling 2021-02-10 08:25:35 +01:00
parent 548f8a0644
commit 794ebb699c
16 changed files with 17 additions and 24 deletions

View file

@ -26,6 +26,7 @@
#include <LibCore/ArgsParser.h>
#include <LibGUI/Application.h>
#include <LibGUI/Window.h>
#include <LibWeb/Dump.h>
#include <LibWeb/InProcessWebView.h>
#include <LibWeb/Layout/InitialContainingBlockBox.h>