mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibWeb: Stub StorageManager idl interface
This commit is contained in:
parent
97d5cf4eef
commit
1b84062c74
Notes:
github-actions[bot]
2024-08-16 15:23:18 +00:00
Author: https://github.com/jamierocks
Commit: 1b84062c74
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1066
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/trflynn89 ✅
10 changed files with 87 additions and 0 deletions
27
Userland/Libraries/LibWeb/StorageAPI/StorageManager.h
Normal file
27
Userland/Libraries/LibWeb/StorageAPI/StorageManager.h
Normal 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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue