mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
4417f63ca0
These are defined by the ServiceWorker spec, not the HTML one.
26 lines
650 B
C++
26 lines
650 B
C++
/*
|
|
* Copyright (c) 2024, Tim Ledbetter <tim.ledbetter@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
|
|
namespace Web::ServiceWorker {
|
|
|
|
class ServiceWorkerRegistration : public DOM::EventTarget {
|
|
WEB_PLATFORM_OBJECT(ServiceWorkerRegistration, DOM::EventTarget);
|
|
GC_DECLARE_ALLOCATOR(ServiceWorkerRegistration);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<ServiceWorkerRegistration> create(JS::Realm& realm);
|
|
|
|
explicit ServiceWorkerRegistration(JS::Realm&);
|
|
virtual ~ServiceWorkerRegistration() override = default;
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|