ladybird/Userland/Services/LaunchServer/LaunchServer.ipc
Timothy 944e5cfb35 Everywhere: Use IPC include syntax
Remove superfluous includes from IPCCompiler's generated output and
add include directives in IPC definitions where appropriate.
2021-07-03 12:16:00 +02:00

14 lines
476 B
Plaintext

#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() => ()
}