diff options
Diffstat (limited to 'src/greeter-broadcast.vala')
-rw-r--r-- | src/greeter-broadcast.vala | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/greeter-broadcast.vala b/src/greeter-broadcast.vala index 41caed8..b2f15d2 100644 --- a/src/greeter-broadcast.vala +++ b/src/greeter-broadcast.vala @@ -1,5 +1,6 @@ /* * Copyright 2014 © Canonical Ltd. + * Copyright 2021 © Robert Tari * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -15,6 +16,7 @@ * * Authors: * Ted Gould <ted@canonical.com> + * Robert Tari <robert@tari.in> */ [DBus (name = "org.ayatana.Desktop.Greeter.Broadcast")] @@ -22,9 +24,9 @@ public interface GreeterBroadcast : Object { // methods // unused public abstract async void RequestApplicationStart(string name, string appid) throws IOError; // unused public abstract async void RequestHomeShown(string name) throws IOError; - public abstract async void RequestSoundPlayPause(string name) throws IOError; - public abstract async void RequestSoundNext(string name) throws IOError; - public abstract async void RequestSoundPrev(string name) throws IOError; + public abstract async void RequestSoundPlayPause(string name) throws GLib.DBusError, GLib.IOError; + public abstract async void RequestSoundNext(string name) throws GLib.DBusError, GLib.IOError; + public abstract async void RequestSoundPrev(string name) throws GLib.DBusError, GLib.IOError; // signals // unused public signal void StartApplication(string username, string appid); // unused public signal void ShowHome(string username); |