| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-25 18:08:29 -06:00
										 |  |  | #include <LibWeb/Bindings/Intrinsics.h>
 | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  | #include <LibWeb/XHR/ProgressEvent.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::XHR { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-25 18:08:29 -06:00
										 |  |  | ProgressEvent* ProgressEvent::create(JS::Realm& realm, FlyString const& event_name, ProgressEventInit const& event_init) | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-25 18:08:29 -06:00
										 |  |  |     return realm.heap().allocate<ProgressEvent>(realm, realm, event_name, event_init); | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-25 18:08:29 -06:00
										 |  |  | ProgressEvent* ProgressEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, ProgressEventInit const& event_init) | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-25 18:08:29 -06:00
										 |  |  |     return create(realm, event_name, event_init); | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-25 18:08:29 -06:00
										 |  |  | ProgressEvent::ProgressEvent(JS::Realm& realm, FlyString const& event_name, ProgressEventInit const& event_init) | 
					
						
							|  |  |  |     : Event(realm, event_name, event_init) | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |     , m_length_computable(event_init.length_computable) | 
					
						
							|  |  |  |     , m_loaded(event_init.loaded) | 
					
						
							|  |  |  |     , m_total(event_init.total) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-25 18:08:29 -06:00
										 |  |  |     set_prototype(&Bindings::cached_web_prototype(realm, "ProgressEvent")); | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ProgressEvent::~ProgressEvent() = default; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |