summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Page/Page.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-02-10 08:25:35 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-10 09:13:29 +0100
commit794ebb699c72e0e2768b7a6380c963150183daa0 (patch)
tree52ea74a21b8075c36a793875cd85ebe5ee58f42d /Userland/Libraries/LibWeb/Page/Page.h
parent548f8a06440b10c73d522c3131035bfe2ae9ccaf (diff)
downloadserenity-794ebb699c72e0e2768b7a6380c963150183daa0.zip
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.
Diffstat (limited to 'Userland/Libraries/LibWeb/Page/Page.h')
-rw-r--r--Userland/Libraries/LibWeb/Page/Page.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/Page/Page.h b/Userland/Libraries/LibWeb/Page/Page.h
index 375bc3c75f..fb94463482 100644
--- a/Userland/Libraries/LibWeb/Page/Page.h
+++ b/Userland/Libraries/LibWeb/Page/Page.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
+ * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -30,10 +30,12 @@
#include <AK/OwnPtr.h>
#include <AK/RefPtr.h>
#include <AK/URL.h>
+#include <AK/WeakPtr.h>
+#include <AK/Weakable.h>
#include <Kernel/API/KeyCode.h>
-#include <LibGUI/Window.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Palette.h>
+#include <LibGfx/StandardCursor.h>
#include <LibWeb/Forward.h>
namespace Web {