mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
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() => ()
|
|
}
|