1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:07:35 +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

@ -34,7 +34,7 @@
#include <LibWeb/Layout/LayoutDocument.h>
#include <LibWeb/Page/EventHandler.h>
#include <LibWeb/Page/Frame.h>
#include <LibWeb/PageView.h>
#include <LibWeb/InProcessWebView.h>
#include <LibWeb/UIEvents/MouseEvent.h>
namespace Web {
@ -196,7 +196,7 @@ bool EventHandler::handle_mousemove(const Gfx::IntPoint& position, unsigned butt
hovered_link_element = node->enclosing_link_element();
if (hovered_link_element) {
#ifdef HTML_DEBUG
dbg() << "PageView: hovering over a link to " << hovered_link_element->href();
dbg() << "InProcessWebView: hovering over a link to " << hovered_link_element->href();
#endif
is_hovering_link = true;
}

View file

@ -31,7 +31,7 @@
#include <LibWeb/Layout/LayoutText.h>
#include <LibWeb/Layout/LayoutWidget.h>
#include <LibWeb/Page/Frame.h>
#include <LibWeb/PageView.h>
#include <LibWeb/InProcessWebView.h>
namespace Web {
@ -124,7 +124,7 @@ void Frame::set_needs_display(const Gfx::IntRect& rect)
host_element()->layout_node()->set_needs_display();
}
void Frame::did_scroll(Badge<PageView>)
void Frame::did_scroll(Badge<InProcessWebView>)
{
if (!m_document)
return;

View file

@ -66,7 +66,7 @@ public:
void set_viewport_rect(const Gfx::IntRect&);
Gfx::IntRect viewport_rect() const { return m_viewport_rect; }
void did_scroll(Badge<PageView>);
void did_scroll(Badge<InProcessWebView>);
FrameLoader& loader() { return m_loader; }
const FrameLoader& loader() const { return m_loader; }

View file

@ -26,7 +26,7 @@
#include <LibWeb/Page/Frame.h>
#include <LibWeb/Page/Page.h>
#include <LibWeb/PageView.h>
#include <LibWeb/InProcessWebView.h>
namespace Web {