summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/Document.h
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2022-09-30 17:16:16 -0600
committerLinus Groh <mail@linusgroh.de>2022-10-01 21:05:32 +0100
commit56b381aac0db837b1b840c482edd9a8d67c2600e (patch)
tree835135e0badd6334e452648a97d60b60024c30da /Userland/Libraries/LibWeb/DOM/Document.h
parentcc164dc1e2441192020ca04f782763ce33893558 (diff)
downloadserenity-56b381aac0db837b1b840c482edd9a8d67c2600e.zip
LibWeb: Cleanup unecessary uses and includes of HTML::Window
The big global refactor left some stragglers behind for atomicity. Clean up the rest, and remove a ton of includes of LibWeb/HTML/Window.h
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/Document.h')
-rw-r--r--Userland/Libraries/LibWeb/DOM/Document.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/Document.h b/Userland/Libraries/LibWeb/DOM/Document.h
index b18edfba67..5524a87752 100644
--- a/Userland/Libraries/LibWeb/DOM/Document.h
+++ b/Userland/Libraries/LibWeb/DOM/Document.h
@@ -84,7 +84,6 @@ public:
static JS::NonnullGCPtr<Document> create_and_initialize(Type, String content_type, HTML::NavigationParams);
static JS::NonnullGCPtr<Document> create(JS::Realm&, AK::URL const& url = "about:blank"sv);
- static JS::NonnullGCPtr<Document> create(HTML::Window&, AK::URL const& url = "about:blank"sv);
static JS::NonnullGCPtr<Document> construct_impl(JS::Realm&);
virtual ~Document() override;