1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

LibWeb: Add OutOfProcessWebView::load_empty_document()

This is cheating a little bit as we don't set the document to a nullptr
as in InProcessWebView, but the observable outcome is the same. :^)
This commit is contained in:
Linus Groh 2020-10-08 21:58:00 +01:00 committed by Andreas Kling
parent b797de3adf
commit 95a6019ff0
2 changed files with 7 additions and 0 deletions

View file

@ -47,6 +47,7 @@ public:
void load(const URL&);
void load_html(const StringView&, const URL&);
void load_empty_document();
void notify_server_did_layout(Badge<WebContentClient>, const Gfx::IntSize& content_size);
void notify_server_did_paint(Badge<WebContentClient>, i32 shbuf_id);