mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	Stop worrying about tiny OOMs. Work towards #20449. While going through these, I also changed the function signature in many places where returning ThrowCompletionOr<T> is no longer necessary.
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			842 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			842 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibJS/Heap/Heap.h>
 | 
						|
#include <LibWeb/Bindings/Intrinsics.h>
 | 
						|
#include <LibWeb/HTML/WorkerGlobalScope.h>
 | 
						|
#include <LibWeb/HTML/WorkerNavigator.h>
 | 
						|
 | 
						|
namespace Web::HTML {
 | 
						|
 | 
						|
JS::NonnullGCPtr<WorkerNavigator> WorkerNavigator::create(WorkerGlobalScope& global_scope)
 | 
						|
{
 | 
						|
    return global_scope.heap().allocate<WorkerNavigator>(global_scope.realm(), global_scope);
 | 
						|
}
 | 
						|
 | 
						|
WorkerNavigator::WorkerNavigator(WorkerGlobalScope& global_scope)
 | 
						|
    : PlatformObject(global_scope.realm())
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
WorkerNavigator::~WorkerNavigator() = default;
 | 
						|
 | 
						|
void WorkerNavigator::initialize(JS::Realm& realm)
 | 
						|
{
 | 
						|
    Base::initialize(realm);
 | 
						|
    set_prototype(&Bindings::ensure_web_prototype<Bindings::WorkerNavigatorPrototype>(realm, "WorkerNavigator"));
 | 
						|
}
 | 
						|
 | 
						|
}
 |