aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/empathy-call-handler.c6
-rw-r--r--src/empathy-call-handler.h2
2 files changed, 8 insertions, 0 deletions
diff --git a/src/empathy-call-handler.c b/src/empathy-call-handler.c
index 3389c8374..7fac79965 100644
--- a/src/empathy-call-handler.c
+++ b/src/empathy-call-handler.c
@@ -1051,3 +1051,9 @@ empathy_call_handler_get_video_local_candidate (
return priv->video_local_candidate;
}
+
+EmpathyContact *
+empathy_call_handler_get_contact (EmpathyCallHandler *self)
+{
+ return self->priv->contact;
+}
diff --git a/src/empathy-call-handler.h b/src/empathy-call-handler.h
index d0f15eecc..36c6cfdc2 100644
--- a/src/empathy-call-handler.h
+++ b/src/empathy-call-handler.h
@@ -104,6 +104,8 @@ FsCandidate * empathy_call_handler_get_video_remote_candidate (
FsCandidate * empathy_call_handler_get_video_local_candidate (
EmpathyCallHandler *self);
+EmpathyContact * empathy_call_handler_get_contact (EmpathyCallHandler *self);
+
G_END_DECLS
#endif /* #ifndef __EMPATHY_CALL_HANDLER_H__*/