blob: 3c3c779aac5105f82b5cec2c6cd8c34bfd1888cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?xml version="1.0" encoding="UTF-8"?>
<node name="/">
<interface name="com.canonical.indicator.messages.service">
<method name="RegisterApplication">
<arg type="s" name="desktop_id" direction="in" />
<arg type="o" name="menu_path" direction="in" />
</method>
<method name="UnregisterApplication">
<arg type="s" name="desktop_id" direction="in" />
</method>
<method name="ApplicationStoppedRunning">
<arg type="s" name="desktop_id" direction="in" />
</method>
<method name="SetStatus">
<arg type="s" name="desktop_id" direction="in" />
<arg type="s" name="status" direction="in" />
</method>
<signal name="StatusChanged">
<arg type="s" name="status" direction="in" />
</signal>
</interface>
</node>
|