Lines Matching refs:conversation
88 private void sendNotificationForConversation(Conversations.Conversation conversation) { in sendNotificationForConversation() argument
91 conversation.getConversationId(), in sendNotificationForConversation()
92 getMessageReadIntent(conversation.getConversationId()), in sendNotificationForConversation()
103 conversation.getConversationId(), in sendNotificationForConversation()
104 getMessageReplyIntent(conversation.getConversationId()), in sendNotificationForConversation()
116 new UnreadConversation.Builder(conversation.getParticipantName()) in sendNotificationForConversation()
117 .setLatestTimestamp(conversation.getTimestamp()) in sendNotificationForConversation()
123 for (Iterator<String> messages = conversation.getMessages().iterator(); in sendNotificationForConversation()
138 .setWhen(conversation.getTimestamp()) in sendNotificationForConversation()
139 .setContentTitle(conversation.getParticipantName()) in sendNotificationForConversation()
148 + conversation.getConversationId() + " conversation: " + conversation); in sendNotificationForConversation()
150 mNotificationManager.notify(conversation.getConversationId(), builder.build()); in sendNotificationForConversation()