mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30: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
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			567 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			567 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, MacDue <macdue@dueutil.tech>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/Layout/SVGTextPathBox.h>
 | |
| #include <LibWeb/Painting/SVGPathPaintable.h>
 | |
| 
 | |
| namespace Web::Layout {
 | |
| 
 | |
| GC_DEFINE_ALLOCATOR(SVGTextPathBox);
 | |
| 
 | |
| SVGTextPathBox::SVGTextPathBox(DOM::Document& document, SVG::SVGTextPathElement& element, CSS::StyleProperties properties)
 | |
|     : SVGGraphicsBox(document, element, properties)
 | |
| {
 | |
| }
 | |
| 
 | |
| GC::Ptr<Painting::Paintable> SVGTextPathBox::create_paintable() const
 | |
| {
 | |
|     return Painting::SVGPathPaintable::create(*this);
 | |
| }
 | |
| 
 | |
| }
 |