/* * Copyright (c) 2024, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Web::WebDriver { class HeapTimer : public JS::Cell { GC_CELL(HeapTimer, JS::Cell); GC_DECLARE_ALLOCATOR(HeapTimer); public: explicit HeapTimer(); virtual ~HeapTimer() override; void start(u64 timeout_ms, GC::Ref> on_timeout); void stop_and_fire_timeout_handler(); void stop(); bool is_timed_out() const { return m_timed_out; } private: virtual void visit_edges(JS::Cell::Visitor& visitor) override; NonnullRefPtr m_timer; GC::Ptr> m_on_timeout; bool m_timed_out { false }; }; }