diff options
author | Linus Groh <mail@linusgroh.de> | 2023-01-12 20:30:06 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-12 23:39:36 +0100 |
commit | de1c0c87fe622c7a71669a93a7f11ffcb1daa1a2 (patch) | |
tree | 226c332c4ab52d6fc46cb6dc208c213679a16e75 /Ladybird/WebContentView.h | |
parent | 2428e3e6759f40927a1d76daba70593adde7aebc (diff) | |
download | serenity-de1c0c87fe622c7a71669a93a7f11ffcb1daa1a2.zip |
LibWebView+Ladybird: Move page loading to ViewImplementation
Diffstat (limited to 'Ladybird/WebContentView.h')
-rw-r--r-- | Ladybird/WebContentView.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Ladybird/WebContentView.h b/Ladybird/WebContentView.h index c01b003ec4..4c6ebc43e4 100644 --- a/Ladybird/WebContentView.h +++ b/Ladybird/WebContentView.h @@ -49,9 +49,6 @@ public: explicit WebContentView(StringView webdriver_content_ipc_path); virtual ~WebContentView() override; - void load(AK::URL const&); - void load_html(StringView html, AK::URL const&); - Function<void(Gfx::IntPoint screen_position)> on_context_menu_request; Function<void(const AK::URL&, DeprecatedString const& target, unsigned modifiers)> on_link_click; Function<void(const AK::URL&, Gfx::IntPoint screen_position)> on_link_context_menu_request; @@ -204,8 +201,6 @@ private: void handle_web_content_process_crash(); - AK::URL m_url; - RefPtr<Gfx::Bitmap> m_backup_bitmap; StringView m_webdriver_content_ipc_path; |