瀏覽代碼

LibCore: Remove unused cruft in EventLoop.h

Andreas Kling 2 年之前
父節點
當前提交
e66313e536
共有 1 個文件被更改,包括 0 次插入8 次删除
  1. 0 8
      Userland/Libraries/LibCore/EventLoop.h

+ 0 - 8
Userland/Libraries/LibCore/EventLoop.h

@@ -94,17 +94,9 @@ public:
 
     static EventLoop& current();
 
-    void did_post_event(Badge<ThreadEventQueue>);
     EventLoopImplementation& impl() { return *m_impl; }
 
 private:
-    void wait_for_event(WaitMode);
-    Optional<Time> get_next_timer_expiration();
-    static void dispatch_signal(int);
-    static void handle_signal(int);
-
-    static pid_t s_pid;
-
     NonnullOwnPtr<EventLoopImplementation> m_impl;
 };