mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			29 lines
		
	
	
	
		
			651 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
	
		
			651 B
		
	
	
	
		
			C
		
	
	
	
	
	
|   | /*
 | ||
|  |  * Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org> | ||
|  |  * | ||
|  |  * SPDX-License-Identifier: BSD-2-Clause | ||
|  |  */ | ||
|  | 
 | ||
|  | #pragma once
 | ||
|  | 
 | ||
|  | #include <LibJS/Forward.h>
 | ||
|  | #include <LibWeb/Bindings/PlatformObject.h>
 | ||
|  | 
 | ||
|  | namespace Web::HTML { | ||
|  | 
 | ||
|  | // https://html.spec.whatwg.org/multipage/dnd.html#the-datatransferitemlist-interface
 | ||
|  | class DataTransferItemList : public Bindings::PlatformObject { | ||
|  |     WEB_PLATFORM_OBJECT(DataTransferItemList, Bindings::PlatformObject); | ||
|  |     JS_DECLARE_ALLOCATOR(DataTransferItemList); | ||
|  | 
 | ||
|  | public: | ||
|  |     virtual ~DataTransferItemList() override; | ||
|  | 
 | ||
|  | private: | ||
|  |     DataTransferItemList(JS::Realm&); | ||
|  | 
 | ||
|  |     virtual void initialize(JS::Realm&) override; | ||
|  | }; | ||
|  | 
 | ||
|  | } |