1<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
2"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
3
4<node>
5	<interface name="org.chromium.flimflam.Profile">
6		<method name="GetProperties">
7			<arg type="a{sv}" direction="out"/>
8		</method>
9		<method name="SetProperty">
10			<arg type="s" direction="in"/>
11			<arg type="v" direction="in"/>
12		</method>
13		<method name="GetEntry">
14			<arg type="s" direction="in"/>
15			<arg type="a{sv}" direction="out"/>
16		</method>
17		<method name="DeleteEntry">
18			<arg type="s" direction="in"/>
19		</method>
20		<signal name="PropertyChanged">
21			<arg type="s"/>
22			<arg type="v"/>
23		</signal>
24	</interface>
25</node>
26