mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
WebContent: Remove unnecessary greet() message
This commit is contained in:
parent
6b2f24018d
commit
67b47d62f3
Notes:
sideshowbarker
2024-07-18 17:30:53 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/67b47d62f32
@ -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) =|
|
||||
|
Loading…
Reference in New Issue
Block a user