mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +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
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			552 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			552 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <LibGC/Ptr.h>
 | 
						|
#include <LibJS/Runtime/Realm.h>
 | 
						|
#include <LibWeb/Forward.h>
 | 
						|
 | 
						|
namespace Web::Bindings {
 | 
						|
 | 
						|
struct HostDefined : public JS::Realm::HostDefined {
 | 
						|
    explicit HostDefined(GC::Ref<Intrinsics> intrinsics)
 | 
						|
        : intrinsics(intrinsics)
 | 
						|
    {
 | 
						|
    }
 | 
						|
    virtual ~HostDefined() override = default;
 | 
						|
    virtual void visit_edges(JS::Cell::Visitor& visitor) override;
 | 
						|
 | 
						|
    GC::Ref<Intrinsics> intrinsics;
 | 
						|
};
 | 
						|
 | 
						|
}
 |