mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/FlyString.h>
 | 
						|
#include <AK/Optional.h>
 | 
						|
#include <AK/Variant.h>
 | 
						|
#include <LibGC/Root.h>
 | 
						|
#include <LibWeb/DOM/Event.h>
 | 
						|
 | 
						|
namespace Web::HTML {
 | 
						|
 | 
						|
struct TrackEventInit : public DOM::EventInit {
 | 
						|
    using TrackType = Optional<Variant<GC::Root<VideoTrack>, GC::Root<AudioTrack>, GC::Root<TextTrack>>>;
 | 
						|
    TrackType track;
 | 
						|
};
 | 
						|
 | 
						|
class TrackEvent : public DOM::Event {
 | 
						|
    WEB_PLATFORM_OBJECT(TrackEvent, DOM::Event);
 | 
						|
    GC_DECLARE_ALLOCATOR(TrackEvent);
 | 
						|
 | 
						|
public:
 | 
						|
    [[nodiscard]] static GC::Ref<TrackEvent> create(JS::Realm&, FlyString const& event_name, TrackEventInit = {});
 | 
						|
    static WebIDL::ExceptionOr<GC::Ref<TrackEvent>> construct_impl(JS::Realm&, FlyString const& event_name, TrackEventInit);
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/media.html#dom-trackevent-track
 | 
						|
    Variant<Empty, GC::Root<VideoTrack>, GC::Root<AudioTrack>, GC::Root<TextTrack>> track() const;
 | 
						|
 | 
						|
private:
 | 
						|
    TrackEvent(JS::Realm&, FlyString const& event_name, TrackEventInit event_init);
 | 
						|
 | 
						|
    virtual void initialize(JS::Realm&) override;
 | 
						|
 | 
						|
    TrackEventInit::TrackType m_track;
 | 
						|
};
 | 
						|
 | 
						|
}
 |