LibCore: Remove unused methods from EventLoop

This commit is contained in:
Lucas CHOLLET 2025-01-04 22:42:22 -05:00 committed by Andrew Kaster
parent 37e1d6ece1
commit e015a43b51
Notes: github-actions[bot] 2025-01-30 22:35:42 +00:00
9 changed files with 1 additions and 89 deletions

View file

@ -55,11 +55,6 @@ public:
virtual void post_event(EventReceiver& receiver, NonnullOwnPtr<Event>&&) = 0;
// FIXME: These APIs only exist for obscure use-cases inside SerenityOS. Try to get rid of them.
virtual void unquit() = 0;
virtual bool was_exit_requested() const = 0;
virtual void notify_forked_and_in_child() = 0;
protected:
EventLoopImplementation();
ThreadEventQueue& m_thread_event_queue;