mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-30 04:40:58 +00:00 
			
		
		
		
	 f87041bf3a
			
		
	
	
		f87041bf3a
		
	
	
	
	
		
			
			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
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Matthew Olsson <mattco@serenityos.org>.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/Animations/AnimationPlaybackEvent.h>
 | |
| #include <LibWeb/Bindings/AnimationPlaybackEventPrototype.h>
 | |
| #include <LibWeb/Bindings/Intrinsics.h>
 | |
| 
 | |
| namespace Web::Animations {
 | |
| 
 | |
| GC_DEFINE_ALLOCATOR(AnimationPlaybackEvent);
 | |
| 
 | |
| GC::Ref<AnimationPlaybackEvent> AnimationPlaybackEvent::create(JS::Realm& realm, FlyString const& type, AnimationPlaybackEventInit const& event_init)
 | |
| {
 | |
|     return realm.create<AnimationPlaybackEvent>(realm, type, event_init);
 | |
| }
 | |
| 
 | |
| // https://www.w3.org/TR/web-animations-1/#dom-animationplaybackevent-animationplaybackevent
 | |
| WebIDL::ExceptionOr<GC::Ref<AnimationPlaybackEvent>> AnimationPlaybackEvent::construct_impl(JS::Realm& realm, FlyString const& type, AnimationPlaybackEventInit const& event_init)
 | |
| {
 | |
|     return create(realm, type, event_init);
 | |
| }
 | |
| 
 | |
| AnimationPlaybackEvent::AnimationPlaybackEvent(JS::Realm& realm, FlyString const& type, AnimationPlaybackEventInit const& event_init)
 | |
|     : DOM::Event(realm, type, event_init)
 | |
|     , m_current_time(event_init.current_time)
 | |
|     , m_timeline_time(event_init.timeline_time)
 | |
| {
 | |
| }
 | |
| 
 | |
| void AnimationPlaybackEvent::initialize(JS::Realm& realm)
 | |
| {
 | |
|     Base::initialize(realm);
 | |
|     WEB_SET_PROTOTYPE_FOR_INTERFACE(AnimationPlaybackEvent);
 | |
| }
 | |
| 
 | |
| }
 |