diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-06-06 17:22:49 +0200 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-06-06 17:22:49 +0200 |
commit | 78068166398ffaee0bb2d997673139168fdfee3b (patch) | |
tree | ad66a330e06e802e4f68a4949783226716766e46 /src/sound-service.xml | |
parent | 7a66e3144234408fad971e25f8164eab085fa21f (diff) | |
download | ayatana-indicator-sound-78068166398ffaee0bb2d997673139168fdfee3b.tar.gz ayatana-indicator-sound-78068166398ffaee0bb2d997673139168fdfee3b.tar.bz2 ayatana-indicator-sound-78068166398ffaee0bb2d997673139168fdfee3b.zip |
two new methods added the service interface inorder to handle track and player specific items
Diffstat (limited to 'src/sound-service.xml')
-rw-r--r-- | src/sound-service.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/sound-service.xml b/src/sound-service.xml index 517088e..aa9f229 100644 --- a/src/sound-service.xml +++ b/src/sound-service.xml @@ -12,11 +12,18 @@ <arg type='s' name='player_desktop_name' direction="in"/> <arg type='b' name='result' direction="out"/> </method> - <method name = "GetSoundState"> <annotation name="org.freedesktop.DBus.GLib.Async" value="true"/> <arg type='i' name='current_state' direction="out"/> </method> + <method name = "EnableTrackSpecificItems"> + <annotation name="org.freedesktop.DBus.GLib.Async" value="true"/> + <arg type='s' name='player_desktop_name' direction="in"/> + </method> + <method name = "EnablePlayerSpecificItems"> + <annotation name="org.freedesktop.DBus.GLib.Async" value="true"/> + <arg type='s' name='player_desktop_name' direction="in"/> + </method> <signal name="SoundStateUpdate"> <arg name="new_state" type="i" direction="out"/> </signal> |