Browser+LibWeb: Pave the way for using WebContentView in Browser

This commit sets everything up, but we still always instantiate a plain
Web::PageView in Browser::Tab..
This commit is contained in:
Andreas Kling 2020-07-06 21:46:37 +02:00
commit d8be535579
Notes: sideshowbarker 2024-07-19 05:06:10 +09:00
6 changed files with 177 additions and 73 deletions

View file

@ -43,6 +43,7 @@ WebContentView::~WebContentView()
void WebContentView::load(const URL& url)
{
m_url = url;
client().post_message(Messages::WebContentServer::LoadURL(url));
}