mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-25 04:22:50 +00:00
27 lines
553 B
C++
27 lines
553 B
C++
/*
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
namespace Web::IndexedDB {
|
|
|
|
// https://w3c.github.io/IndexedDB/#idbfactory
|
|
class IDBFactory : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(IDBFactory, Bindings::PlatformObject);
|
|
JS_DECLARE_ALLOCATOR(IDBFactory);
|
|
|
|
public:
|
|
virtual ~IDBFactory() override;
|
|
|
|
protected:
|
|
explicit IDBFactory(JS::Realm&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|