~ubuntu-branches/ubuntu/precise/telepathy-glib/precise

« back to all changes in this revision

Viewing changes to telepathy-glib/channel.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2011-06-22 16:29:01 UTC
  • mfrom: (1.6.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20110622162901-tc492ifcn229lmkh
Tags: 0.15.2-2
Cherry-pick upstream fix to increase timeout of the contact-lists
test on slower architectures like armel, mips, and mipsel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
    GAsyncResult *result,
153
153
    GError **error);
154
154
 
 
155
void tp_channel_destroy_async (TpChannel *self,
 
156
    GAsyncReadyCallback callback,
 
157
    gpointer user_data);
 
158
 
 
159
gboolean tp_channel_destroy_finish (TpChannel *self,
 
160
    GAsyncResult *result,
 
161
    GError **error);
 
162
 
 
163
/* Channel.Interface.Password */
 
164
#define TP_CHANNEL_FEATURE_PASSWORD \
 
165
  tp_channel_get_feature_quark_password ()
 
166
GQuark tp_channel_get_feature_quark_password (void) G_GNUC_CONST;
 
167
 
 
168
gboolean tp_channel_password_needed (TpChannel *self);
 
169
 
 
170
void tp_channel_provide_password_async (TpChannel *self,
 
171
    const gchar *password,
 
172
    GAsyncReadyCallback callback,
 
173
    gpointer user_data);
 
174
 
 
175
gboolean tp_channel_provide_password_finish (TpChannel *self,
 
176
    GAsyncResult *result,
 
177
    GError **error);
 
178
 
155
179
G_END_DECLS
156
180
 
157
181
#include <telepathy-glib/_gen/tp-cli-channel.h>