blob: 66fb77c2b5ee4749a052c7d929e64a5e3636ec33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/org/gnome/DisplayManager/LocalDisplayFactory">
<interface name="org.gnome.DisplayManager.LocalDisplayFactory">
<method name="CreateProductDisplay">
<arg name="parent_display_id" direction="in" type="o"/>
<arg name="relay_address" direction="in" type="s"/>
<arg name="id" direction="out" type="o"/>
</method>
<method name="CreateTransientDisplay">
<arg name="id" direction="out" type="o"/>
</method>
<method name="StartGuestSession">
<arg name="id" direction="out" type="o"/>
</method>
<method name="SwitchToUser">
<arg name="username" direction="in" type="s"/>
<arg name="id" direction="out" type="o"/>
</method>
</interface>
</node>
|