mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibCore: Remove unused methods from EventLoop
This commit is contained in:
committed by
Andrew Kaster
parent
37e1d6ece1
commit
e015a43b51
@@ -134,17 +134,6 @@ void EventLoopImplementationWindows::quit(int code)
|
||||
m_exit_code = code;
|
||||
}
|
||||
|
||||
void EventLoopImplementationWindows::unquit()
|
||||
{
|
||||
m_exit_requested = false;
|
||||
m_exit_code = 0;
|
||||
}
|
||||
|
||||
bool EventLoopImplementationWindows::was_exit_requested() const
|
||||
{
|
||||
return m_exit_requested;
|
||||
}
|
||||
|
||||
void EventLoopImplementationWindows::post_event(EventReceiver& receiver, NonnullOwnPtr<Event>&& event)
|
||||
{
|
||||
m_thread_event_queue.post_event(receiver, move(event));
|
||||
@@ -157,12 +146,6 @@ void EventLoopImplementationWindows::wake()
|
||||
SetEvent(m_wake_event);
|
||||
}
|
||||
|
||||
void EventLoopImplementationWindows::notify_forked_and_in_child()
|
||||
{
|
||||
dbgln("Core::EventLoopManagerWindows::notify_forked_and_in_child() is not implemented");
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
||||
static int notifier_type_to_network_event(NotificationType type)
|
||||
{
|
||||
switch (type) {
|
||||
|
||||
Reference in New Issue
Block a user