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(DataTransferItem);
JS::NonnullGCPtr<DataTransferItem> DataTransferItem::construct_impl(JS::Realm& realm)
{
return realm.heap().allocate<DataTransferItem>(realm, realm);
}
DataTransferItem::DataTransferItem(JS::Realm& realm)
: PlatformObject(realm)
{