2024-08-13 20:54:58 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
|
|
#include <LibWeb/Bindings/StorageManagerPrototype.h>
|
|
|
|
#include <LibWeb/HTML/Window.h>
|
|
|
|
#include <LibWeb/StorageAPI/StorageManager.h>
|
|
|
|
|
|
|
|
namespace Web::StorageAPI {
|
|
|
|
|
|
|
|
JS_DEFINE_ALLOCATOR(StorageManager);
|
|
|
|
|
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<StorageManager>> StorageManager::create(JS::Realm& realm)
|
|
|
|
{
|
2024-11-14 05:50:17 +13:00
|
|
|
return realm.create<StorageManager>(realm);
|
2024-08-13 20:54:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
StorageManager::StorageManager(JS::Realm& realm)
|
|
|
|
: PlatformObject(realm)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void StorageManager::initialize(JS::Realm& realm)
|
|
|
|
{
|
|
|
|
Base::initialize(realm);
|
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(StorageManager);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|