mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
28 lines
620 B
C
28 lines
620 B
C
![]() |
/*
|
||
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibWeb/Bindings/PlatformObject.h>
|
||
|
|
||
|
namespace Web::StorageAPI {
|
||
|
|
||
|
class StorageManager final : public Bindings::PlatformObject {
|
||
|
WEB_PLATFORM_OBJECT(StorageManager, Bindings::PlatformObject);
|
||
|
JS_DECLARE_ALLOCATOR(StorageManager);
|
||
|
|
||
|
public:
|
||
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<StorageManager>> create(JS::Realm&);
|
||
|
virtual ~StorageManager() override = default;
|
||
|
|
||
|
private:
|
||
|
StorageManager(JS::Realm&);
|
||
|
|
||
|
virtual void initialize(JS::Realm&) override;
|
||
|
};
|
||
|
|
||
|
}
|