WebContent: Remove unnecessary greet() message

This commit is contained in:
Andreas Kling 2021-05-23 09:24:16 +02:00
parent 6b2f24018d
commit 67b47d62f3
Notes: sideshowbarker 2024-07-18 17:30:53 +09:00
4 changed files with 0 additions and 8 deletions

View File

@ -26,7 +26,6 @@ void WebContentClient::die()
void WebContentClient::handshake()
{
greet();
}
void WebContentClient::did_paint(const Gfx::IntRect&, i32 bitmap_id)

View File

@ -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);

View File

@ -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;

View File

@ -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) =|