mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:12:45 +00:00 
			
		
		
		
	 944e5cfb35
			
		
	
	
		944e5cfb35
		
	
	
	
	
		
			
			Remove superfluous includes from IPCCompiler's generated output and add include directives in IPC definitions where appropriate.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			476 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			476 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #include <AK/URL.h>
 | |
| 
 | |
| endpoint LaunchServer
 | |
| {
 | |
|     open_url(URL url, String handler_name) => (bool response)
 | |
|     get_handlers_for_url(URL url) => (Vector<String> handlers)
 | |
|     get_handlers_with_details_for_url(URL url) => (Vector<String> handlers_details)
 | |
| 
 | |
|     add_allowed_url(URL url) => ()
 | |
|     add_allowed_handler_with_any_url(String handler_name) => ()
 | |
|     add_allowed_handler_with_only_specific_urls(String handler_name, Vector<URL> urls) => ()
 | |
|     seal_allowlist() => ()
 | |
| }
 |