Userland: Make IPC handlers return void if they don't have any outputs

This commit is contained in:
Gunnar Beutner 2021-05-02 05:20:28 +02:00 committed by Andreas Kling
commit 889359b6f9
Notes: sideshowbarker 2024-07-18 18:47:39 +09:00
30 changed files with 180 additions and 225 deletions

View file

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