| Index: webrtc/p2p/base/dtlstransportchannel.cc
|
| diff --git a/webrtc/p2p/base/dtlstransportchannel.cc b/webrtc/p2p/base/dtlstransportchannel.cc
|
| index 0fa32c8b9e222b28e70ceb8528d1d5d0c278ba00..6221057da43ef51d218ebf65fbafe61f38326911 100644
|
| --- a/webrtc/p2p/base/dtlstransportchannel.cc
|
| +++ b/webrtc/p2p/base/dtlstransportchannel.cc
|
| @@ -471,9 +471,10 @@ void DtlsTransportChannelWrapper::OnWritableState(
|
| }
|
| }
|
|
|
| -void DtlsTransportChannelWrapper::OnReceivingState(TransportChannel* channel) {
|
| +void DtlsTransportChannelWrapper::OnReceivingState(
|
| + rtc::PacketTransportInterface* transport) {
|
| ASSERT(rtc::Thread::Current() == network_thread_);
|
| - RTC_DCHECK(channel == channel_);
|
| + RTC_DCHECK(transport == channel_);
|
| LOG_J(LS_VERBOSE, this)
|
| << "DTLSTransportChannelWrapper: channel receiving state changed to "
|
| << channel_->receiving();
|
|
|