mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 01:51:03 +09:00
LibWebView+Ladybird: Move page loading to ViewImplementation
This commit is contained in:
parent
2428e3e675
commit
de1c0c87fe
Notes:
sideshowbarker
2024-07-17 01:47:14 +09:00
Author: https://github.com/linusg
Commit: de1c0c87fe
Pull-request: https://github.com/SerenityOS/serenity/pull/16983
6 changed files with 25 additions and 43 deletions
|
@ -33,12 +33,6 @@ class OutOfProcessWebView final
|
|||
public:
|
||||
virtual ~OutOfProcessWebView() override;
|
||||
|
||||
AK::URL url() const { return m_url; }
|
||||
void load(const AK::URL&);
|
||||
|
||||
void load_html(StringView, const AK::URL&);
|
||||
void load_empty_document();
|
||||
|
||||
void debug_request(DeprecatedString const& request, DeprecatedString const& argument = {});
|
||||
|
||||
void js_console_input(DeprecatedString const& js_source);
|
||||
|
@ -193,8 +187,6 @@ private:
|
|||
void enqueue_input_event(InputEvent const&);
|
||||
void process_next_input_event();
|
||||
|
||||
AK::URL m_url;
|
||||
|
||||
RefPtr<Gfx::Bitmap> m_backup_bitmap;
|
||||
RefPtr<GUI::Dialog> m_dialog;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue