mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
12 lines
455 B
Plaintext
12 lines
455 B
Plaintext
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() => ()
|
|
}
|