mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
79870bc603
This reverts commit f7beea1397
.
This broke loading https://x.com/
28 lines
553 B
C++
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;
|
|
};
|
|
|
|
}
|