summaryrefslogtreecommitdiff
path: root/Userland/Services/LaunchServer/LaunchServer.ipc
blob: d296712be391d362e2ec5c622b61cea0d4b3ffc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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() => ()
}