コード例 #1
0
ファイル: SmsRequest.cpp プロジェクト: vvuk/mozilla-central
NS_IMETHODIMP
SmsRequest::NotifyMessageMarkedRead(bool aRead)
{
  if (mParent) {
    return SendMessageReply(MessageReply(ReplyMarkeMessageRead(aRead)));
  }
  return NotifySuccess<bool>(aRead);
}
コード例 #2
0
ファイル: SmsParent.cpp プロジェクト: JCROM-FxOS/b2jc_gecko
NS_IMETHODIMP
SmsRequestParent::NotifyMessageMarkedRead(bool aRead)
{
  return SendReply(ReplyMarkeMessageRead(aRead));
}