LibWeb: Stub StorageManager idl interface

This commit is contained in:
Jamie Mansfield 2024-08-13 20:54:58 +01:00 committed by Tim Flynn
commit 1b84062c74
Notes: github-actions[bot] 2024-08-16 15:23:18 +00:00
10 changed files with 87 additions and 0 deletions

View file

@ -0,0 +1,27 @@
/*
* 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;
};
}