mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
WebContent: Remove unnecessary greet() message
This commit is contained in:
@@ -26,7 +26,6 @@ void WebContentClient::die()
|
||||
|
||||
void WebContentClient::handshake()
|
||||
{
|
||||
greet();
|
||||
}
|
||||
|
||||
void WebContentClient::did_paint(const Gfx::IntRect&, i32 bitmap_id)
|
||||
|
||||
@@ -59,10 +59,6 @@ const Web::Page& ClientConnection::page() const
|
||||
return m_page_host->page();
|
||||
}
|
||||
|
||||
void ClientConnection::greet()
|
||||
{
|
||||
}
|
||||
|
||||
void ClientConnection::update_system_theme(const Core::AnonymousBuffer& theme_buffer)
|
||||
{
|
||||
Gfx::set_system_theme(theme_buffer);
|
||||
|
||||
@@ -32,7 +32,6 @@ private:
|
||||
Web::Page& page();
|
||||
const Web::Page& page() const;
|
||||
|
||||
virtual void greet() override;
|
||||
virtual void update_system_theme(Core::AnonymousBuffer const&) override;
|
||||
virtual void update_system_fonts(String const&, String const&) override;
|
||||
virtual void update_screen_rect(Gfx::IntRect const&) override;
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
endpoint WebContentServer
|
||||
{
|
||||
greet() => ()
|
||||
|
||||
update_system_theme(Core::AnonymousBuffer theme_buffer) =|
|
||||
update_system_fonts(String default_font_query, String fixed_width_font_query) =|
|
||||
update_screen_rect(Gfx::IntRect rect) =|
|
||||
|
||||
Reference in New Issue
Block a user