diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-10 23:27:56 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-11 22:45:49 +0800 |
commit | 7ccdd1850f123f1e4a3bcc019ab422b1291c39e1 (patch) | |
tree | e80c88a3140210e560091474d94f9a09c80770b8 /libempathy/empathy-dispatcher.h | |
parent | 95efa6ca70aa8cf1dc3283706c2254f45cad59c5 (diff) | |
download | gsoc2013-empathy-7ccdd1850f123f1e4a3bcc019ab422b1291c39e1.tar gsoc2013-empathy-7ccdd1850f123f1e4a3bcc019ab422b1291c39e1.tar.gz gsoc2013-empathy-7ccdd1850f123f1e4a3bcc019ab422b1291c39e1.tar.bz2 gsoc2013-empathy-7ccdd1850f123f1e4a3bcc019ab422b1291c39e1.tar.lz gsoc2013-empathy-7ccdd1850f123f1e4a3bcc019ab422b1291c39e1.tar.xz gsoc2013-empathy-7ccdd1850f123f1e4a3bcc019ab422b1291c39e1.tar.zst gsoc2013-empathy-7ccdd1850f123f1e4a3bcc019ab422b1291c39e1.zip |
dispatcher: remove channel handling and requesting code
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r-- | libempathy/empathy-dispatcher.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h index 7991de085..c44ac9d01 100644 --- a/libempathy/empathy-dispatcher.h +++ b/libempathy/empathy-dispatcher.h @@ -28,7 +28,6 @@ #include <telepathy-glib/channel.h> #include "empathy-contact.h" -#include "empathy-handler.h" #include "empathy-dispatch-operation.h" G_BEGIN_DECLS @@ -57,23 +56,11 @@ struct _EmpathyDispatcherClass GObjectClass parent_class; }; -/* Will be called when the channel is ready for dispatching. The requestor - * handle the channel itself by calling empathy_dispatch_operation_handles */ -typedef void (EmpathyDispatcherRequestCb) ( - EmpathyDispatchOperation *dispatch, const GError *error, - gpointer user_data); typedef void (EmpathyDispatcherFindChannelClassCb) ( GList *channel_classes, gpointer user_data); GType empathy_dispatcher_get_type (void) G_GNUC_CONST; -void empathy_dispatcher_create_channel (EmpathyDispatcher *dispatcher, - TpConnection *connection, - GHashTable *request, - gint64 timestamp, - EmpathyDispatcherRequestCb *callback, - gpointer user_data); - /* Requesting 1 to 1 text channels */ void empathy_dispatcher_chat_with_contact_id (TpAccount *account, const gchar *contact_id, @@ -98,21 +85,6 @@ GList * empathy_dispatcher_find_requestable_channel_classes const gchar *channel_type, guint handle_type, const char *first_property_name, ...); -/* Create the dispatcher singleton */ -EmpathyDispatcher * empathy_dispatcher_new (const gchar *name, - GPtrArray *filters, - GStrv capabilities); - -EmpathyHandler * -empathy_dispatcher_add_handler (EmpathyDispatcher *dispatcher, - const gchar *name, - GPtrArray *filters, - GStrv capabilities); - -void -empathy_dispatcher_remove_handler (EmpathyDispatcher *dispatcher, - EmpathyHandler *handler); - /* Get the dispatcher singleton */ EmpathyDispatcher * empathy_dispatcher_dup_singleton (void); |