mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-27 11:24:16 +00:00
35 lines
830 B
C++
35 lines
830 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <LibJS/Runtime/Realm.h>
|
||
|
|
#include <LibWeb/Bindings/DataTransferItemListPrototype.h>
|
||
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
||
|
|
#include <LibWeb/HTML/DataTransferItemList.h>
|
||
|
|
|
||
|
|
namespace Web::HTML {
|
||
|
|
|
||
|
|
JS_DEFINE_ALLOCATOR(DataTransferItemList);
|
||
|
|
|
||
|
|
JS::NonnullGCPtr<DataTransferItemList> DataTransferItemList::construct_impl(JS::Realm& realm)
|
||
|
|
{
|
||
|
|
return realm.heap().allocate<DataTransferItemList>(realm, realm);
|
||
|
|
}
|
||
|
|
|
||
|
|
DataTransferItemList::DataTransferItemList(JS::Realm& realm)
|
||
|
|
: PlatformObject(realm)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
DataTransferItemList::~DataTransferItemList() = default;
|
||
|
|
|
||
|
|
void DataTransferItemList::initialize(JS::Realm& realm)
|
||
|
|
{
|
||
|
|
Base::initialize(realm);
|
||
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(DataTransferItemList);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|