mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-28 07:18:51 +00:00
LibCore: Remove unused methods from EventLoop
This commit is contained in:
parent
37e1d6ece1
commit
e015a43b51
Notes:
github-actions[bot]
2025-01-30 22:35:42 +00:00
Author: https://github.com/LucasChollet
Commit: e015a43b51
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3145
Reviewed-by: https://github.com/ADKaster ✅
9 changed files with 1 additions and 89 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue