diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/URL/URL.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/URL/URL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/URL/URL.cpp b/Userland/Libraries/LibWeb/URL/URL.cpp index 0470e86f1c..8878ca32a2 100644 --- a/Userland/Libraries/LibWeb/URL/URL.cpp +++ b/Userland/Libraries/LibWeb/URL/URL.cpp @@ -10,7 +10,7 @@ namespace Web::URL { -DOM::ExceptionOr<NonnullRefPtr<URL>> URL::create_with_global_object(Bindings::WindowObject& window_object, String const& url, String const& base) +DOM::ExceptionOr<NonnullRefPtr<URL>> URL::create_with_global_object(HTML::Window& window_object, String const& url, String const& base) { // 1. Let parsedBase be null. Optional<AK::URL> parsed_base; |