/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Web::HTML { EventLoop::EventLoop() { } EventLoop::~EventLoop() { } EventLoop& main_thread_event_loop() { return static_cast(Bindings::main_thread_vm().custom_data())->event_loop; } }