mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-27 21:42:53 +00:00
26 lines
477 B
C++
26 lines
477 B
C++
/*
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
|
|
namespace Web::IndexedDB {
|
|
|
|
class IDBRequest : public DOM::EventTarget {
|
|
WEB_PLATFORM_OBJECT(IDBRequest, EventTarget);
|
|
JS_DECLARE_ALLOCATOR(IDBRequest);
|
|
|
|
public:
|
|
virtual ~IDBRequest() override;
|
|
|
|
protected:
|
|
explicit IDBRequest(JS::Realm&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|