mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
This will allow us to remove the use of SafeFunction in it's implementation. This requires a fair amount of plumbing to wire up the GC heap to the appropriate places in order to create the timers.
44 lines
976 B
C++
44 lines
976 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibCore/Forward.h>
|
|
#include <LibWeb/Platform/Timer.h>
|
|
|
|
namespace Web::Platform {
|
|
|
|
class TimerSerenity final : public Timer {
|
|
JS_CELL(TimerSerenity, Timer);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<TimerSerenity> create(JS::Heap&);
|
|
|
|
virtual ~TimerSerenity();
|
|
|
|
virtual void start() override;
|
|
virtual void start(int interval_ms) override;
|
|
virtual void restart() override;
|
|
virtual void restart(int interval_ms) override;
|
|
virtual void stop() override;
|
|
|
|
virtual void set_active(bool) override;
|
|
|
|
virtual bool is_active() const override;
|
|
virtual int interval() const override;
|
|
virtual void set_interval(int interval_ms) override;
|
|
|
|
virtual bool is_single_shot() const override;
|
|
virtual void set_single_shot(bool) override;
|
|
|
|
private:
|
|
TimerSerenity();
|
|
|
|
NonnullRefPtr<Core::Timer> m_timer;
|
|
};
|
|
|
|
}
|