mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:47:45 +00:00
Userland: Make IPC handlers return void if they don't have any outputs
This commit is contained in:
parent
7cf2839a26
commit
889359b6f9
30 changed files with 180 additions and 225 deletions
|
@ -58,9 +58,8 @@ const Web::Page& ClientConnection::page() const
|
|||
return m_page_host->page();
|
||||
}
|
||||
|
||||
Messages::WebContentServer::GreetResponse ClientConnection::handle(const Messages::WebContentServer::Greet&)
|
||||
void ClientConnection::handle(const Messages::WebContentServer::Greet&)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
void ClientConnection::handle(const Messages::WebContentServer::UpdateSystemTheme& message)
|
||||
|
|
|
@ -33,7 +33,7 @@ private:
|
|||
Web::Page& page();
|
||||
const Web::Page& page() const;
|
||||
|
||||
virtual Messages::WebContentServer::GreetResponse handle(const Messages::WebContentServer::Greet&) override;
|
||||
virtual void handle(const Messages::WebContentServer::Greet&) override;
|
||||
virtual void handle(const Messages::WebContentServer::UpdateSystemTheme&) override;
|
||||
virtual void handle(const Messages::WebContentServer::UpdateScreenRect&) override;
|
||||
virtual void handle(const Messages::WebContentServer::LoadURL&) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue