| Index: webrtc/p2p/base/transportcontroller.cc
|
| diff --git a/webrtc/p2p/base/transportcontroller.cc b/webrtc/p2p/base/transportcontroller.cc
|
| index 1dc7ca789acd56956775b669ce9620aed0b51836..9d5fb88b711c570f720bf7f466219fba0420510d 100644
|
| --- a/webrtc/p2p/base/transportcontroller.cc
|
| +++ b/webrtc/p2p/base/transportcontroller.cc
|
| @@ -565,11 +565,11 @@ bool TransportController::GetStats_n(const std::string& transport_name,
|
| return transport->GetStats(stats);
|
| }
|
|
|
| -void TransportController::OnChannelWritableState_n(TransportChannel* channel) {
|
| +void TransportController::OnChannelWritableState_n(
|
| + rtc::PacketTransportInterface* transport) {
|
| RTC_DCHECK(network_thread_->IsCurrent());
|
| - LOG(LS_INFO) << channel->transport_name() << " TransportChannel "
|
| - << channel->component() << " writability changed to "
|
| - << channel->writable() << ".";
|
| + LOG(LS_INFO) << " TransportChannel " << transport->debug_name()
|
| + << " writability changed to " << transport->writable() << ".";
|
| UpdateAggregateStates_n();
|
| }
|
|
|
|
|