1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

LibWeb: Rename PageView => InProcessWebView

This commit is contained in:
Andreas Kling 2020-08-17 15:58:29 +02:00
parent ba856c7ebe
commit 56c3748dcc
31 changed files with 88 additions and 88 deletions

View file

@ -56,7 +56,7 @@
#include <LibWeb/Layout/LayoutNode.h>
#include <LibWeb/Loader/ResourceLoader.h>
#include <LibWeb/Page/Frame.h>
#include <LibWeb/PageView.h>
#include <LibWeb/InProcessWebView.h>
#include <LibWeb/WebContentView.h>
namespace Browser {
@ -83,7 +83,7 @@ Tab::Tab(Type type)
auto& toolbar = m_toolbar_container->add<GUI::ToolBar>();
if (m_type == Type::InProcessWebView)
m_page_view = widget.add<Web::PageView>();
m_page_view = widget.add<Web::InProcessWebView>();
else
m_web_content_view = widget.add<WebContentView>();