mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-14 12:09:45 +00:00
This service daemon will act as an intermediary between the Inspector program and the inspectable programs it wants to inspect. Programs can make themselves available for inspection by connecting to /tmp/portal/inspectables using the Core::EventLoop RPC protocol.
10 lines
294 B
Text
10 lines
294 B
Text
endpoint InspectorServer
|
|
{
|
|
greet() => ()
|
|
|
|
get_all_objects(i32 pid) => (String json)
|
|
set_inspected_object(i32 pid, u64 object_id) => (bool success)
|
|
set_object_property(i32 pid, u64 object_id, String name, String value) => (bool success)
|
|
identify(i32 pid) => (String json)
|
|
|
|
}
|