Index: talk/session/media/typingmonitor.cc |
diff --git a/talk/session/media/typingmonitor.cc b/talk/session/media/typingmonitor.cc |
index ee0f92a60af2446c75ea519c6f293a818f4153da..ec2358bd1faf3150eefcc86c77b6ddce02b76471 100644 |
--- a/talk/session/media/typingmonitor.cc |
+++ b/talk/session/media/typingmonitor.cc |
@@ -55,7 +55,7 @@ TypingMonitor::~TypingMonitor() { |
rtc::MessageList messages; |
worker_thread_->Clear(this, 0, &messages); |
ASSERT(messages.size() == 1); |
- channel_->MuteStream(0, false); |
+ channel_->MuteStream(0, false, nullptr); |
SignalMuted(channel_, false); |
} |
} |
@@ -72,7 +72,7 @@ void TypingMonitor::OnVoiceChannelError(uint32 ssrc, |
// TODO(perkj): Refactor TypingMonitor and the MediaChannel to handle |
// multiple sending audio streams. SSRC 0 means the default sending audio |
// channel. |
- channel_->MuteStream(0, true); |
+ channel_->MuteStream(0, true, nullptr); |
SignalMuted(channel_, true); |
has_pending_unmute_ = true; |
muted_at_ = rtc::Time(); |
@@ -111,7 +111,7 @@ void TypingMonitor::OnMessage(rtc::Message* msg) { |
<< "ms ago, unmuting after " << rtc::TimeSince(muted_at_) |
<< "ms total."; |
has_pending_unmute_ = false; |
- channel_->MuteStream(0, false); |
+ channel_->MuteStream(0, false, nullptr); |
SignalMuted(channel_, false); |
} else { |
LOG(LS_INFO) << "Mute timeout hit, last typing " << silence_period |