LibWeb: Remove unused DataTransfer-related IDL factories

The IDL for DataTransferItem and DataTransferItemList do not have
constructors.
This commit is contained in:
Timothy Flynn 2024-08-21 06:25:21 -04:00 committed by Andreas Kling
commit 34ad67e056
Notes: github-actions[bot] 2024-08-22 12:23:10 +00:00
4 changed files with 0 additions and 12 deletions

View file

@ -13,11 +13,6 @@ 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)
{