ladybird/Userland/Libraries/LibWeb/IndexedDB/IDBFactory.h
Andreas Kling 79870bc603 Revert "LibWeb: Add stub for IDBFactory.open"
This reverts commit f7beea1397.

This broke loading https://x.com/
2024-05-22 21:40:52 +02:00

28 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;
};
}