mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	 5e1d678bae
			
		
	
	
		5e1d678bae
		
	
	
	
	
		
			
			Now that LibIPC is using SCM_RIGHTS properly, we can go back to only having one socket laying around when needing to transfer fds to peers.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			478 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			478 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, The SerenityOS developers
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Traits.h>
 | |
| 
 | |
| namespace WebView {
 | |
| 
 | |
| class CookieJar;
 | |
| class Database;
 | |
| class InspectorClient;
 | |
| class OutOfProcessWebView;
 | |
| class ProcessManager;
 | |
| class ViewImplementation;
 | |
| class WebContentClient;
 | |
| 
 | |
| struct Attribute;
 | |
| struct CookieStorageKey;
 | |
| struct ProcessHandle;
 | |
| struct SearchEngine;
 | |
| 
 | |
| }
 | |
| 
 | |
| namespace AK {
 | |
| 
 | |
| template<>
 | |
| struct Traits<WebView::CookieStorageKey>;
 | |
| 
 | |
| }
 |