mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			545 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			545 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibWeb/HTML/Scripting/Script.h>
 | 
						|
 | 
						|
namespace Web::HTML {
 | 
						|
 | 
						|
Script::Script(AK::URL base_url, DeprecatedString filename, EnvironmentSettingsObject& environment_settings_object)
 | 
						|
    : m_base_url(move(base_url))
 | 
						|
    , m_filename(move(filename))
 | 
						|
    , m_settings_object(environment_settings_object)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
Script::~Script() = default;
 | 
						|
 | 
						|
void Script::visit_host_defined_self(JS::Cell::Visitor& visitor)
 | 
						|
{
 | 
						|
    visitor.visit(this);
 | 
						|
}
 | 
						|
 | 
						|
}
 |