From: Jens Georg Date: Thu, 6 Dec 2012 10:15:01 +0000 (+0100) Subject: core: Remove obsolete functions X-Git-Tag: RYGEL_0_17_5~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e45d9346a05ebb5e70da0d86225545aa3e4ef37b;p=profile%2Fivi%2Frygel.git core: Remove obsolete functions --- diff --git a/src/librygel-core/rygel-free-desktop-interfaces.vala b/src/librygel-core/rygel-free-desktop-interfaces.vala index 9a92913..e4713ef 100644 --- a/src/librygel-core/rygel-free-desktop-interfaces.vala +++ b/src/librygel-core/rygel-free-desktop-interfaces.vala @@ -26,24 +26,12 @@ namespace FreeDesktop { public const string DBUS_OBJECT_PATH = "/org/freedesktop/DBus"; } -public enum FreeDesktop.DBusRequestNameReply { - PRIMARY_OWNER = 1, - IN_QUEUE, - EXISTS, - ALREADY_OWNER -} - [DBus (name = "org.freedesktop.DBus")] public interface FreeDesktop.DBusObject: Object { public abstract signal void name_owner_changed (string name, string old_owner, string new_owner); - // FIXME: These methods should be async - public abstract uint32 request_name (string name, uint32 flags) - throws DBusError; - public abstract uint32 start_service_by_name (string name, uint32 flags) - throws DBusError; public abstract async string[] list_names () throws DBusError; public abstract async string[] list_activatable_names () throws DBusError; }